To learn React Native by training from GREAT free tutorial from Grafikart on YouTube - https://www.youtube.com/watch?v=Y7rbJRjaYCY.
The tutorial is in French.
- This app uses
createBottomTabNavigatorinstead ofTabNavigator.
This section provides a list of the potential errors that happened during the development process, as well as, their correction and can therefore serve as a database of errors/corrections and lessons learnt for future developments.
Invariant Violation: Tried to get frame for out of range index NaN: This is due to the fact that an object was provided to the FlatListdataprop, more precisely theresponse.datafrom the axios get method. To correct it ensure that it is the list with results and not the object:response.data-->response.data.listCannot read property "object" of undefined: problem withstatic propTypes = {day: React.PropTypes.object, index: React.PropTypes.number