Disable back button in react navigation

前端 未结 18 1708
长发绾君心
长发绾君心 2020-12-12 18:31

I\'m using react native navigation (react-navigation) StackNavigator. it starts from the Login page throughout the whole lifecycle of the app. I don\'t want to have a back

18条回答
  •  一生所求
    2020-12-12 19:17

    found it myself ;) adding:

      left: null,
    

    disable the default back button.

    const MainStack = StackNavigator({
      Login: {
        screen: Login,
        navigationOptions: {
          title: "Login",
          header: {
            visible: false,
          },
        },
      },
      FirstPage: {
        screen: FirstPage,
        navigationOptions: {
          title: "FirstPage",
          header: {
            left: null,
          }
        },
      },
    

提交回复
热议问题