I've been having trouble to show images in react native. How to show react native with local path(not assets, it's coming from camera)?
P.S.
After getting the relative path. ex.(on ios, var/../../...jpg), I'm saving that in the state and render it to my image.
this.state.path contains the relative path to the image
<Image source={{uri: this.state.path}} style={StyleSheet.absoluteFill}/>
but nothing shows.