我有一个下面的导航器:
BottomNavigator
Home -> (Profile Screen)
StackNavigator
Menu -> (Profile Screen)
我的问题是-
我应该在哪里将“个人资料”屏幕从“首页”和“ 菜单屏幕才有意义。
非常抱歉,我的英语水平。
答案 0 :(得分:0)
使用以下新的stackNavigator包装BottomNavigator
和ProfileScreen
。
并且不要忘记提供一些选择。
例如,
StackNavigator
ㄴBottomNavigator
ㄴ ...
ㄴProfileScreen
const RootNavigator = createStackNavigator({
Bottom: BottomNavigator,
Profile: ProfileScreen
}, {
defaultNavigationOptions: {
mode: 'modal',
header: none,
}
})
它使您可以从任何地方致电Profile
。
navigation.navigate('Profile')