I am using the module "react-native-navigation": "^2.0.2334".
I want to use block sidMenu opened by swiping and use fixedWidth I was able to "disabledOpenGesture" option at V1 but I don't know how to apply this option to V2.
I tried like this but it didn't work.
Code
Navigation.setRoot({
root: {
sideMenu: {
left: {
component: {
name: Screens.JHDrawerMenu.name,
id: Screens.JHDrawerMenu.name,
passProps: {
items: tabs,
},
},
},
center: {
...
}
},
options:{
fixedWidth: 150,
disabledOpenGesture : false
}
}
});