菜鸟教程小白 发表于 2022-12-13 08:32:21

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


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

<pre><code>this.props.navigator.replace({
      title:&#34;Agni&#34;,
      component: SwipeScreen,
      rightButtonTitle: &#39;Matches&#39;,
      onRightButtonPress: () =&gt; { console.log(&#34;matches&#34;) },
      passProps:{&#39;token&#39;: {result: info}},
    });
</code></pre>

<p>调用 .replace 而不是 .push 是否与为什么它不会出现有关? </p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>当使用 <code>this.props.navigator.push()</code> 而不是 <code>this.props.navigator.replace 时,我能够让我的 <code>rightButtonTitle</code> 出现()</code>.</p>

<p>在 React Native 的 Github 问题页面上,<a href="https://github.com/facebook/react-native/issues/476" rel="noreferrer noopener nofollow">this issue</a>正是你正在经历的。 25 天前的最后一条评论还指出 <code>replace</code> 遇到了同样的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 React Native 中向 NavigatorIOS 添加右键?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31079372/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31079372/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 React Native 中向 NavigatorIOS 添加右键?