如何在 React Native 中向 NavigatorIOS 添加右键?
How do I add a right button to NavigatorIOS in 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}},
});
调用.replace intead of .push 与它不显示的原因有什么关系吗?
谢谢。
当使用 this.props.navigator.push()
而不是 this.props.navigator.replace()
时,我能够让我的 rightButtonTitle
出现。
在 React Native 的 Github 问题页面上,this issue 正是您遇到的问题。 25 天前的最后一条评论还指出 replace
也遇到同样的问题。
试图让 NavigatorIOS 在 React Native 中工作,但我无法让按钮显示在右侧。当用户使用 Facebook API 成功登录时,我将此代码块称为:
this.props.navigator.replace({
title:"Agni",
component: SwipeScreen,
rightButtonTitle: 'Matches',
onRightButtonPress: () => { console.log("matches") },
passProps:{'token': {result: info}},
});
调用.replace intead of .push 与它不显示的原因有什么关系吗?
谢谢。
当使用 this.props.navigator.push()
而不是 this.props.navigator.replace()
时,我能够让我的 rightButtonTitle
出现。
在 React Native 的 Github 问题页面上,this issue 正是您遇到的问题。 25 天前的最后一条评论还指出 replace
也遇到同样的问题。