【发布时间】:2018-12-27 09:34:12
【问题描述】:
我正在使用 React Navigation 3,我想要隐藏标题并显示包含选项卡的自定义标题,如下图所示。
const HomeTab = createMaterialTopTabNavigator({
Tab1: InviHistory,
Tab2: Shop
},{
tabBarOptions: {
scrollEnabled: true,
labelStyle: {
fontSize: 12,
},
style: {
backgroundColor: 'red',
},
indicatorStyle: {
backgroundColor: '#fff'
},
defaultNavigationOptions:{
header:null
}
},
});
【问题讨论】:
标签: react-native tabs react-navigation