I am trying to load image from external sdcard after I take photo from camera in React native image component as following, but it is not rendering in android. I even check
Just had this issue, solved it by prepending the filepaths with file://
file://
So, instead of:
Use:
Note the 3 consecutive slashes as opposed to just two as suggested by @Cherniv.