如何在React Native中向NavigatorIOS添加右键?

时间:2015-06-26 17:58:17

标签: ios reactjs react-native

尝试让NavigatorIOS在React Native中工作,但是我无法在右侧显示按钮。当用户使用Facebook API成功登录时,我正在调用此代码块:

this.props.navigator.replace({
      title:"Agni", 
      component: SwipeScreen,
      rightButtonTitle: 'Matches',
      onRightButtonPress: () => { console.log("matches") },
      passProps:{'token': {result: info}},
    });

调用.push的.replace intead是否与它为什么不显示有关?

感谢。

1 个答案:

答案 0 :(得分:1)

使用rightButtonTitle而不是this.props.navigator.push()时,我能够显示this.props.navigator.replace()

在React Native的Github问题页面上,this issue正是您所遇到的。从25天前开始的最后一条评论也指出replace遭遇同样的问题。