如何在没有TabNavigator的情况下使用React Navigation重定向到另一个Component

时间:2018-04-16 23:45:49

标签: javascript reactjs react-native

这是我的APP.JS定义:

const AppStackNavigator = StackNavigator({
  Authentication:{
    screen: Authentication
  },
  MainScreen:{
    screen:MainScreen
  },
  SingleConversation:{
    screen: SingleConversation
  }

});

我在MainScreen内部点击了一个TabNavigators。

现在我想从' Tab1'重定向到SingleConversation,我该怎么做?

 _onPressItem = (item) => { 

  console.log(JSON.stringify(this.props.navigation, null, 3))
 this.props.navigation.navigate('SingleConversation', {name: 'Diego', age: 24,})
};

我明白了:

  

{" state":{         " key":" MessagesTab",         " routeName":" MessagesTab" }}

0 个答案:

没有答案