React Native not loading image from sdcard in android

后端 未结 3 1565
生来不讨喜
生来不讨喜 2021-01-04 18:26

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

3条回答
  •  别那么骄傲
    2021-01-04 18:55

    Just had this issue, solved it by prepending the filepaths with file://

    So, instead of:

     
    

    Use:

     
    

    Note the 3 consecutive slashes as opposed to just two as suggested by @Cherniv.

提交回复
热议问题