@reason-react-native/inappbrowser
v3.5.0
Published
ReScript bindings for react-native-inappbrowser
Downloads
6
Readme
@reason-react-native/inappbrowser
ReScript / Reason bindings for
react-native-inappbrowser-reborn
.
Exposed as ReactNativeInAppBrowser
module.
@reason-react-native/inappbrowser
X.y.* means it's compatible with
react-native-inappbrowser-reborn
X.y.*
Installation
When
react-native-inappbrowser-reborn
is properly installed & configured by following their installation instructions,
you can install the bindings:
npm install @reason-react-native/inappbrowser
# or
yarn add @reason-react-native/inappbrowser
@reason-react-native/inappbrowser
should be added to bs-dependencies
in your
bsconfig.json
:
{
//...
"bs-dependencies": [
"reason-react",
"reason-react-native",
// ...
+ "@reason-react-native/inappbrowser"
],
//...
}
Usage
open Js.Promise;
open ReactNativeInAppBrowser;
let opts = iosOptions(~preferredBarTintColor="#ff0000", ());
openBrowser("https://rescript-lang.org", `IosOptions(opts))
|> Js.Promise.then_((result: browserResult) => {
Js.log(result.resultType);
resolve();
})
|> ignore;
open Js.Promise;
open ReactNativeInAppBrowser;
openAuthIos("https://example.com/auth", "myschema://auth", `IosOptions(iosOptions()))
|> Js.Promise.then_((result: authResult) => {
switch (result.url) {
| Some(url) => Js.log(url)
| None => Js.log("Something went wrong")
};
resolve();
})
|> ignore;
Types
authResult
browserResult
iosOptions
androidOptions
Methods
ReactNativeInAppBrowser.openBrowser
(string, [ `AndroidOptions(androidOptions) | `IosOptions(iosOptions) ]) => Js.Promise.t(browserResult)
ReactNativeInAppBrowser.close
unit => unit
ReactNativeInAppBrowser.openAuth
(string, [ `AndroidOptions(androidOptions) | `IosOptions(iosOptions) ]) => Js.Promise.t(authResult)
ReactNativeInAppBrowser.closeAuth
unit => unit
Changelog
Check the changelog for more informations about recent releases.
Contribute
Read the contribution guidelines before contributing.
Code of Conduct
We want this community to be friendly and respectful to each other. Please read our full code of conduct so that you can understand what actions will and will not be tolerated.