Skip to content

Instantly share code, notes, and snippets.

@ridgeO
Created May 30, 2017 04:32
Show Gist options
  • Save ridgeO/68b6de0935c316a36bb15b7ef4ec90e1 to your computer and use it in GitHub Desktop.
Save ridgeO/68b6de0935c316a36bb15b7ef4ec90e1 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 TabNav = TabNavigator(
{
Green: { screen: GreenScreen },
Red: { screen: RedScreen },
Blue: { screen: BlueScreen },
Purple: { screen: PurpleScreen }
},
{
tabBarOptions: {
labelStyle: {
fontSize: 20,
marginBottom: 10
}
}
}
)
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment