@reason-react-native/image-picker
v2.3.4
Published
ReScript bindings for react-native-image-picker.
Downloads
7
Readme
@reason-react-native/image-picker
ReScript / Reason bindings for
react-native-image-picker
.
Exposed as ReactNativeImagePicker
module.
@reason-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 @reason-react-native/image-picker
# or
yarn add @reason-react-native/image-picker
@reason-react-native/image-picker
should be added to bs-dependencies
in your
bsconfig.json
:
{
//...
"bs-dependencies": [
"reason-react",
"reason-react-native",
// ...
+ "@reason-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.