April 2017
Intermediate to advanced
414 pages
8h 14m
English
Our iOS app's entry point is index.ios.js and everything that it renders starts from here. Right now, if you launch iOS Simulator using the react-native run-ios command, you will see the same Hello World sample application that we were acquainted with in the preface.
What we need to do right now is link the TasksList component we just built to the index and remove all the unnecessary JSX automatically generated for us. Let's go ahead and clear nearly everything in the render method of our Tasks component, except the top layer View container. When you're done, it should look like this:
class Tasks extends Component { render () { return ( <View style={styles.container}> </View> ); } }
We'll want to insert ...
Read now
Unlock full access