react-native-image-view
react-native-image-view copied to clipboard
Can I pass android Image URI
Right now I can see image view using http link, But I need to pass android Image URI. For example it show image view when the user selects image from Gallery. Is this working right now ?
@dhanababum It looks like you can pass all images in you gallery to images prop in format described in docs and when user taps on image just pass image index to ImageView via setState like:
this.setState({imageIndex: index, imageViewVisible: true})
Thanks for Instant reply, I have tried with content:// image path, But it doesn't work. Can you please check from your end, is that working ?