0

Hello I am having difficulty rendering the image of the movie poster following the guide. I checked multiple times but still can't find out why the image won't show.

Here is the gist: https://gist.github.com/josephan/3b73f894ebe10244e2cd6b1315ac65d8

And guide: https://facebook.github.io/react-native/docs/sample-application-movies.html#content

Joseph An
  • 822
  • 1
  • 7
  • 19

1 Answers1

0

You are loading the image via a http connection which will not work on iOS. You have to load it via a https connection. Try using a https URI and check if its working.

See also this post React-native loading image over https works while http does not work and this one Can't show Image by URI in React Native iOS Simulator

Community
  • 1
  • 1
Orlando
  • 1,576
  • 2
  • 15
  • 20