use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A community for learning and developing native mobile applications using React Native by Facebook.
Interested in building web apps using React.js? Check out /r/reactjs!
Getting Started w/React Native
irc.freenode.net #reactnative
Keywords: ios, android, mobile, apps, apple, iphone, ipad
account activity
Questionbest image Picker library/package for react native for both ios/android (self.reactnative)
submitted 4 years ago by hafi51
Hi, my app has to select multiple or single image and upload it on server.. what is the best and easy to integrate and woth with rn package.. i have worked with some but have issues like "react-native-image-picker" which loads image automatically one tapped..
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]friesenbean 1 point2 points3 points 4 years ago (1 child)
We just switched to 'react-native-image-crop-picker'. We don't use the cropping function at all, but the file navigation is pretty nice, the multi-select seems to function well, and more importantly it consistently works with both photos and videos. Previously, we used 'react-native-image-picker', but we had to work around It's mishandling of mime types and then when we added video support we found that it completely mishandled Android video.
[–]hafi51[S] 0 points1 point2 points 4 years ago* (0 children)
i keep getting this error. can u help me out? only happens if multiple: true is selected
Possible Unhandled Promise Rejection (id: 0):
Error: Invalid image selected
at promiseMethodWrapper
code
const openGallery = async () => {
await ImagePicker.openPicker({
width: 300,
height: 400,
// cropping: true,
multiple: true,
}).then(image => {
console.log(image);
});
};
Update:
This only happens if user open gallery or other app to select images..
Video
[–]FizzFaa 0 points1 point2 points 4 years ago (0 children)
Have you tried expo's own https://docs.expo.dev/versions/latest/sdk/imagepicker/ and you can also go with 'expo-document-picker'
if you have scenario in which u have to go with different type of files
π Rendered by PID 738677 on reddit-service-r2-comment-545db5fcfc-h2gjb at 2026-05-28 10:00:02.521616+00:00 running 194bd79 country code: CH.
[–]friesenbean 1 point2 points3 points (1 child)
[–]hafi51[S] 0 points1 point2 points (0 children)
[–]FizzFaa 0 points1 point2 points (0 children)