Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Created May 30, 2017 05:10
Show Gist options
  • Save ridgeO/b17d0b09fde0c136c443230534694b83 to your computer and use it in GitHub Desktop.
Save ridgeO/b17d0b09fde0c136c443230534694b83 to your computer and use it in GitHub Desktop.
Code snippet from ReactNav application as featured in http://platypus.is/posts/4
# App.js
...
const NestedNav = StackNavigator(
{
Landing: { screen: GreenScreen },
Drawer: { screen: DrawerNavigator(
{
Home: { screen: TabNavigator(
{
Red: { screen: RedScreen },
Blue: { screen: BlueScreen }
},
{
tabBarOptions: {
labelStyle: {
fontSize: 20,
marginBottom: 10
}
}
}
)},
Purple: { screen: PurpleScreen }
}
) }
},
{ headerMode: 'none' }
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment