How do I add a right button to NavigatorIOS in React Native?

Jay Deuskar

Trying to get NavigatorIOS working in React Native but I'm having trouble getting a button to show up on the right. I'm calling this this block of code when the user successfully logs in using Facebook API:

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

Does calling .replace intead of .push have anything to do with why it won't show up?

Thanks.

Richard Kho

I was able to get my rightButtonTitle to appear when using this.props.navigator.push() as opposed to this.props.navigator.replace().

On the React Native's Github Issues page, this issue is exactly what you're experiencing. The last comment, from 25 days ago, also states that replace suffers from this same issue.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How do I add a right button to NavigatorIOS in React Native?

From Dev

How to add Right Button in NavigatorIOS in Tabs for React Native

From Dev

How do I add custom title and button to a header in React Native?

From Dev

React Native - NavigatorIOS

From Dev

How do I render a component when a button is clicked in React Native

From Dev

React Native: How to switch page without using NavigatorIOS component?

From Dev

React Native - NavigatorIOS and TabBarIOS implementation

From Dev

React Native - NavigatorIOS and TabBarIOS implementation

From Dev

Adjust the zIndex of NavigatorIOS for React Native

From Java

How do I add an element to array in reducer of React native redux?

From Dev

how to add, element from a button react native

From Dev

how to add, element from a button react native

From Dev

How do I export Facebook Messenger "Send" Button as a Native UI Component in React Native?

From Java

How do I change the theme when I press the button? (React-native)

From Dev

How do I access React-native button(TouchableHighlight) in Appium test case

From Dev

How do I access React-native button(TouchableHighlight) in Appium test case

From Dev

How do I add a button in ruby volt?

From Dev

how do I add code for a button on a viewcontroller?

From Dev

How do I right align a button next to a label in a form?

From Dev

How do I set location of button to be top right of screen?

From Dev

How do I enable multidex for react native?

From Dev

How do I properly debug in React Native?

From Dev

How do I add a triangle to the top right of this div?

From Dev

How do I add a blockquote right after a directive?

From Dev

How do I add the music to my game at the right time?

From Dev

How do I add text to the right of this map using HTML?

From Dev

how can i take screenshot with a button in react native?

From Dev

How do I get rid of right margin in React?

From Dev

React-native Airbnb-Maps: How do I render a button inside the airbnb maps pop-up box?

Related Related

  1. 1

    How do I add a right button to NavigatorIOS in React Native?

  2. 2

    How to add Right Button in NavigatorIOS in Tabs for React Native

  3. 3

    How do I add custom title and button to a header in React Native?

  4. 4

    React Native - NavigatorIOS

  5. 5

    How do I render a component when a button is clicked in React Native

  6. 6

    React Native: How to switch page without using NavigatorIOS component?

  7. 7

    React Native - NavigatorIOS and TabBarIOS implementation

  8. 8

    React Native - NavigatorIOS and TabBarIOS implementation

  9. 9

    Adjust the zIndex of NavigatorIOS for React Native

  10. 10

    How do I add an element to array in reducer of React native redux?

  11. 11

    how to add, element from a button react native

  12. 12

    how to add, element from a button react native

  13. 13

    How do I export Facebook Messenger "Send" Button as a Native UI Component in React Native?

  14. 14

    How do I change the theme when I press the button? (React-native)

  15. 15

    How do I access React-native button(TouchableHighlight) in Appium test case

  16. 16

    How do I access React-native button(TouchableHighlight) in Appium test case

  17. 17

    How do I add a button in ruby volt?

  18. 18

    how do I add code for a button on a viewcontroller?

  19. 19

    How do I right align a button next to a label in a form?

  20. 20

    How do I set location of button to be top right of screen?

  21. 21

    How do I enable multidex for react native?

  22. 22

    How do I properly debug in React Native?

  23. 23

    How do I add a triangle to the top right of this div?

  24. 24

    How do I add a blockquote right after a directive?

  25. 25

    How do I add the music to my game at the right time?

  26. 26

    How do I add text to the right of this map using HTML?

  27. 27

    how can i take screenshot with a button in react native?

  28. 28

    How do I get rid of right margin in React?

  29. 29

    React-native Airbnb-Maps: How do I render a button inside the airbnb maps pop-up box?

HotTag

Archive