尝试让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是否与它为什么不显示有关?
感谢。
答案 0 :(得分:1)
使用rightButtonTitle
而不是this.props.navigator.push()
时,我能够显示this.props.navigator.replace()
。
在React Native的Github问题页面上,this issue正是您所遇到的。从25天前开始的最后一条评论也指出replace
遭遇同样的问题。