如何在 React Native 中向 NavigatorIOS 添加右键?
Posted
技术标签:
【中文标题】如何在 React Native 中向 NavigatorIOS 添加右键?【英文标题】:How do I add a right button to NavigatorIOS in React Native? 【发布时间】:2015-06-26 17:58:17 【问题描述】:试图让 Navigatorios 在 React Native 中工作,但我无法让按钮显示在右侧。当用户使用 Facebook API 成功登录时,我将调用此代码块:
this.props.navigator.replace(
title:"Agni",
component: SwipeScreen,
rightButtonTitle: 'Matches',
onRightButtonPress: () => console.log("matches") ,
passProps:'token': result: info,
);
调用 .replace 而不是 .push 是否与为什么它不会出现有关?
谢谢。
【问题讨论】:
【参考方案1】:当使用 this.props.navigator.push()
而不是 this.props.navigator.replace()
时,我能够让我的 rightButtonTitle
出现。
在 React Native 的 Github 问题页面上,this issue 正是您所遇到的。 25 天前的最后一条评论还指出,replace
也遇到了同样的问题。
【讨论】:
以上是关于如何在 React Native 中向 NavigatorIOS 添加右键?的主要内容,如果未能解决你的问题,请参考以下文章
如何在 React native redux 的 reducer 中向数组添加元素?
如何在 React Native 中向 API 发出 POST 请求?