Skip to content

Instantly share code, notes, and snippets.

@VivekNayyar
Created May 21, 2018 10:37
Show Gist options
  • Save VivekNayyar/06affe6e20ade68bbced787fdfd4e45a to your computer and use it in GitHub Desktop.
Save VivekNayyar/06affe6e20ade68bbced787fdfd4e45a to your computer and use it in GitHub Desktop.
navigationOptions: ({ navigation }) => {
const { routeName, routes } = navigation.state;
return {
tabBarIcon: ({ focused, tintColor }) => {
// You can return any component that you like here!
// We usually create an icon component rendering some svg
return <Icon type={routeName} focused={focused} />;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment