@rescript-react-native/image-picker
![ReScript Forum](https://img.shields.io/discourse/posts?color=e6484f&label=ReScript%20Forum&server=https%3A%2F%2Fforum.rescript-lang.org)
ReScript bindings for
react-native-image-picker
.
Exposed as ReactNativeImagePicker
module.
@rescript-react-native/image-picker
X.y.* means it's compatible with
react-native-image-picker
X.y.*
Installation
When
react-native-image-picker
is properly installed & configured by following their installation instructions,
you can install the bindings:
npm install @rescript-react-native/image-picker
# or
yarn add @rescript-react-native/image-picker
@rescript-react-native/image-picker
should be added to bs-dependencies
in your
bsconfig.json
:
{
//...
"bs-dependencies": [
"@rescript/react",
"rescript-react-native",
// ...
+ "@rescript-react-native/image-picker"
],
//...
}
Usage
open ReactNativeImagePicker;
ImagePicker.(
launchCamera(
Options.make(
~title="Take a picture",
~cameraType=`back,
~mediaType=`photo,
~permissionDenied=
Options.PermissionDenied.options(
~title="Permission denied !",
~text="text",
~reTryTitle="Retry",
~okTitle="Ok !",
),
(),
),
res => {
Js.log(res##uri);
Js.log(res##path);
}
)
);
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.