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...