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/
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