react-native-photo-upload
react-native-photo-upload copied to clipboard
Invoke the open image picker prompt outside of the image.
I want to add button that onPress will open the the image picker. How can I call theis event?
import ImagePicker from 'react-native-image-picker';
ImagePicker.showImagePicker(this.options, async (response) => {
if(response && response.data) {
console.log(response.data)
}
});