All Questions
Tagged with react-native-image-picker imagepicker
7 questions
2
votes
0
answers
813
views
limited access privilege always return all the photos using expo-image-picker
I'm new w/ React Native and ask you for the help.
I'm building an app for iOS which can use camera and photo library. Everything is good, except limited accessPrivilege. When first time user tries to ...
3
votes
2
answers
2k
views
Expo-image-picker: "Unhandled promise rejection: Error: Failed to write data to a file"
I am building a react native multiuser app and I am trying to set up the user profile page. I am trying to make a user profile picture that a user can upload from their image library. I manage to open ...
1
vote
1
answer
851
views
add a viw on top of camera opened by expo Image picker on react native expo application
I am currently using react native image picker library to open camera , and I would like to add a message in the form of a snack bar or a toast message on top of the opened camera using the following ...
0
votes
1
answer
581
views
Why i get gradle build error when adding image_picker into my dependecies?
I just simply add image_picker: to my dependecies and after i do pub upgrade i can't build the project. I get this error message:
FAILURE: Build failed with an exception.
* What went wrong:
A ...
1
vote
2
answers
519
views
What to use instead of ImagePicker.showImagePicker?
ImagePicker.showImagePicker was removed from the ImagePicker. You can now either launchCamera or launchImageLibrary.
What will be the best alternative to allow the user to do both (Camera or Library)?
...
1
vote
0
answers
395
views
Image crop picker save images to gallery on click from camera in react native
Hi I am using react native image crop picker and using this code
ImagePicker.openCamera({
width: 300,
height: 400,
compressImageQuality: Platform.OS === 'android' ? 0.7 : 0.8,
...
3
votes
1
answer
709
views
Expo-Image-Picker in React Native
Is there a way to limit video recording time using ImagePicker.launchCameraAsync()?
My code:
captureVideoObject = async () => {
return await ImagePicker.launchCameraAsync({
...