我想知道,如果我们可以在子导航器的父导航器没有标题模式的情况下向其添加标题。我正在尝试执行此操作,但是如果父级没有标题,则无法将标题带到子导航器。
const MenuStackNav = createMaterialTopTabNavigator({
All: { screen: AllTweetList },
Quotes: { screen: QuotesTweetList },
Blogs: { screen: BlogsTweetList },
Events: { screen: EventsTweetList },
Videos: { screen: VideosTweetList },
},
{
tabBarOptions: {
labelStyle: {
fontSize:9,
fontWeight:'900',
},
style: {
backgroundColor: '#999999',
},
indicatorStyle:{
height:5,
backgroundColor:'black'
}
},
navigationOptions: {
headerStyle: {
backgroundColor: '#f4511e',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontWeight: 'bold',
},
},
});
我想要这个导航器上方的标题。此导航器是堆栈导航器的子级,而该堆栈导航器是抽屉式导航器的子级