Skip to content

Instantly share code, notes, and snippets.

@david-arteaga
Created February 18, 2019 19:41
Show Gist options
  • Save david-arteaga/4621555295e76d50f648f9ef025a7d07 to your computer and use it in GitHub Desktop.
Save david-arteaga/4621555295e76d50f648f9ef025a7d07 to your computer and use it in GitHub Desktop.
[React navigation modal disable gestures] #reactnative #reactnavigation
const InitialNavigator = createStackNavigator(
{
Login: LoginScreen,
Registration: {
screen: RegistrationScreen,
navigationOptions: { gesturesEnabled: false },
},
RecoverPassword: {
screen: RecoverPasswordScreen,
navigationOptions: { gesturesEnabled: false },
},
},
{
headerMode: 'none',
mode: 'modal',
navigationOptions: {
gesturesEnabled: false,
},
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment