Tutorial by Examples

Navigator is React Native's default navigator. A Navigator component manages a stack of route objects, and provides methods for managing that stack. <Navigator ref={(navigator) => { this.navigator = navigator }} initialRoute={{ id: 'route1', title: 'Route 1' }} renderScene={this.ren...
With the help of react-navigation, you can add navigation to your app really easy. Install react-navigation npm install --save react-navigation Example: import { Button, View, Text, AppRegistry } from 'react-native'; import { StackNavigator } from 'react-navigation'; const App = StackNavigat...
Install by using npm install --save react-native-router-flux In react-native-router-flux, each route is called a <Scene> <Scene key="home" component={LogIn} title="Home" initial /> key A unique string that can be used to refer to the particular scene. componen...

Page 1 of 1