I am just starting out with React-native and have a pretty decent grasp on React for creating web apps... I am running into a confusing issue here that never occured when wo
You should either require the local assets or use object with uri key.
uri
So either in MainComponent:
MainComponent
this.state = { images:[ require('./src/images/1.png'), require('./src/images/2.png'), require('./src/images/3.png') ] }
or in BasicComponent:
BasicComponent
return ( );