Disable back button in react navigation

前端 未结 18 1605
长发绾君心
长发绾君心 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:27

    Have you considered using this.props.navigation.replace( "HomeScreen" ) instead of this.props.navigation.navigate( "HomeScreen" ).

    This way you are not adding anything to the stack. so HomeScreen won't wave anything to go back to if back button pressed in Android or screen swiped to the right in IOS.

    More informations check the Documentation. And of course you can hide the back button by setting headerLeft: null in navigationOptions

提交回复
热议问题