Search code examples
react-native-navigationwix-react-native-navigation

Is there a way to disable the right button in the topbar?


Is there a way to disable the right button like here in the contacts app? iOS Contact app


Solution

  • Set the enabled option to false.

    rightButtons: [
      {
        id: 'fertigBtn',
        text: 'Fertig',
        enabled: false
      }
    ]