Just getting started with React-Native and I\'m having some trouble requiring a static image.
Here\'s the very-basic code I have so far:
\'use strict\'
For static images, you need to provide the path like:
<Image source={require('./images/back.png')} style= {{width:25, height:25, marginLeft:12, padding:12}}/>
This worked for me, for the image stored in images folder of project directory: