Can't show Image in React Native

后端 未结 13 2622
半阙折子戏
半阙折子戏 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 source={{uri: 'https://reactjs.org/logo-og.png'}} style={{width: 400, height: 400}} />
      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

    0 讨论(0)
提交回复
热议问题