disableOpenGesture hiding is not working Navigation Drawer react native
We are using Navigation Drawer in our application to show side menu. In a few of the screens we don't want to show this navigation drawer once user tried to do left/right gestures. So, for that, we are trying to hide a particular screen - gestures/navigationdrawer - but it's not working. When the user swipes (left/right) the drawer still opens. const AppNavigator = StackNavigator( { // Drawer: { screen: Drawer }, Register: { screen: Register, navigationOptions: ({ navigation }) => ({ drawerLockMode: "locked-closed", }) }, TabHome: { screen: TabHome }, Album: { screen: Album }, offlineContent: