导航到屏幕,使它与反应导航相混淆

时间:2019-11-28 04:41:26

标签: react-native react-navigation

我有一个下面的导航器:

BottomNavigator
      Home           -> (Profile Screen)         
      StackNavigator
            Menu     -> (Profile Screen) 

我的问题是-

  

我应该在哪里将“个人资料”屏幕从“首页”和“   菜单屏幕才有意义。

非常抱歉,我的英语水平。

1 个答案:

答案 0 :(得分:0)

使用以下新的stackNavigator包装BottomNavigatorProfileScreen。 并且不要忘记提供一些选择。

例如,

StackNavigator
 ㄴBottomNavigator
   ㄴ ...
 ㄴProfileScreen
const RootNavigator = createStackNavigator({
  Bottom: BottomNavigator,
  Profile: ProfileScreen 
}, {
  defaultNavigationOptions: {
    mode: 'modal',
    header: none,
  }
})

它使您可以从任何地方致电Profile

navigation.navigate('Profile')