为什么我使用react-navigation 导航自定义导航不显示,是在tabnavigator底部导航的js文件中,
来源:1-6 Navigator的基本使用及页面间数据传递实现
几曾回首
2018-09-10
写回答
2回答
-
几曾回首
提问者
2018-10-11
我新创建的js文件自定义头部标题就没有问题,但是tab页里的就有问题
00 -
CrazyCodeBoy
2018-09-11
参考代码:
export const AppTabNavigator = createBottomTabNavigator({ Page1: { screen: Page1, navigationOptions: { tabBarLabel: 'Page1', tabBarIcon: ({tintColor, focused}) => ( <Ionicons name={focused ? 'ios-home' : 'ios-home-outline'} size={26} style={{color: tintColor}} /> ), } }, Page2: { screen: Page2, navigationOptions: { tabBarLabel: 'Page2', tabBarIcon: ({tintColor, focused}) => ( <Ionicons name={focused ? 'ios-people' : 'ios-people-outline'} size={26} style={{color: tintColor}} /> ), } }, Page3: { screen: Page3, navigationOptions: { tabBarLabel: 'Page3', tabBarIcon: ({tintColor, focused}) => ( <Ionicons name={focused ? 'ios-chatboxes' : 'ios-chatboxes-outline'} size={26} style={{color: tintColor}} /> ), } }, }, { tabBarComponent: TabBarComponent, tabBarOptions: { activeTintColor: Platform.OS === 'ios' ? '#e91e63' : '#fff', } });
另外,也可以可将你的代码贴出来我帮你看看哈。
00
相似问题