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/
My issue was in path. react-native-fs returns path like /storage/emulated/0/Android/data/com.blah/blah.jpeg but Image components requires it to be file:///storage/emulated/0/Android/data/com.blah/blah.jpeg
react-native-fs
/storage/emulated/0/Android/data/com.blah/blah.jpeg
Image
file:///storage/emulated/0/Android/data/com.blah/blah.jpeg