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
We need to set false to the gesturesEnabled along with headerLeft to null. Because we can navigate back by swiping the screen as well.
gesturesEnabled
headerLeft
null
navigationOptions: { title: 'Title', headerLeft: null, gesturesEnabled: false, }