Disable back button in react navigation

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

    For latest version of React Navigation, even if you use null in some cases it may still show "back" written!

    Go for this in your main app.js under your screen name or just go to your class file and add: -

    static navigationOptions = {
       headerTitle:'Disable back Options',
       headerTitleStyle: {color:'white'},
       headerStyle: {backgroundColor:'black'},
       headerTintColor: 'red',
       headerForceInset: {vertical: 'never'},
       headerLeft: " "
    }
    

提交回复
热议问题