Reputation: 269
I want to pick an image from gallery and copy that image to the currently running app’s installation directory using react-native.
Upvotes: 1
Views: 1721
Reputation: 819
You can use React Native Image Picker to pick an image from Camera Roll or Gallery.
See it's usage code here
To write any file into native file storage, you can use RNFS
See a basic example here
Upvotes: 1