Skip to content

Instantly share code, notes, and snippets.

@dmitryshelomanov
Created February 4, 2019 21:11
Show Gist options
  • Save dmitryshelomanov/7fd438a924574430c9b0ddcf58005b90 to your computer and use it in GitHub Desktop.
Save dmitryshelomanov/7fd438a924574430c9b0ddcf58005b90 to your computer and use it in GitHub Desktop.
createBottomTabNavigator example
import * as React from 'react';
import { Text, View, StyleSheet } from 'react-native';
import { Constants } from 'expo';
import { createBottomTabNavigator, createAppContainer } from 'react-navigation'
const routes = {
Home: () => (
<View style={styles.container}>
<Text style={styles.paragraph}>Home Screen</Text>
</View>
),
}
const App = createBottomTabNavigator(routes)
export default createAppContainer(App)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment