Can't show Image in React Native

后端 未结 13 2629
半阙折子戏
半阙折子戏 2020-12-05 23:31

I\'m using react-native 0.28.0

I\'m trying to show an image on iPhone simulator according to this tutorial: http://www.appcoda.com/react-native-introduction/



        
13条回答
  •  遥遥无期
    2020-12-06 00:08

    When adding Image tag and use uri you need to check following things:

    • Adding width and height style for Image tag:
      ex:

      Image doc

    • Using HTTP urls: you will need to enable app transport security
      App transport security for iOS

    • Using HTTPS urls: it will work normally

提交回复
热议问题