How to use tabBarComponent for TabNavigator? Tab bar not showing
问题 I'm trying to make my own custom tab bar and it seems tabBarComponent is the way to do it by setting as my own component. With the below code my tab bar does not show up. const TabNav = TabNavigator({ LaunchScreen: { screen: PrimaryNav, navigationOptions: { tabBarLabel:'Find', tabBarIcon: ({ tintColor }) => ( <Icon name='search' size={20} color='white' /> ), }, }, }, { navigationOptions: { headerTintColor: 'grey' }, tabBarComponent: FooterTabs, tabBarPosition: 'bottom', swipeEnabled:false,