react-native-photo-upload icon indicating copy to clipboard operation
react-native-photo-upload copied to clipboard

Invoke the open image picker prompt outside of the image.

Open elad823 opened this issue 7 years ago • 1 comments

I want to add button that onPress will open the the image picker. How can I call theis event?

elad823 avatar Feb 16 '18 10:02 elad823

import ImagePicker from 'react-native-image-picker';

ImagePicker.showImagePicker(this.options, async (response) => {
    if(response && response.data) {
        console.log(response.data)
    }
});

peterholcomb avatar Feb 16 '18 19:02 peterholcomb