Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const PanelStack = createStackNavigator({
  2.     Panel: PanelInner
  3. }, {
  4.     initialRouteName: 'Panel',
  5.     headerLayoutPreset: 'center'
  6. });
  7.  
  8.  
  9.  
  10. PanelStack.navigationOptions = {
  11.     tabBarLabel: String.panel,
  12.     tabBarIcon: ({focused}) => {
  13.         return (
  14.             <SimpleLineIcons size={wp(5)} name='grid' color={focused ? '#F95631' : '#8A8A8A'}/>
  15.         )
  16.     }
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement