iOS: Disabled drawer slide gesture (#81)

This commit is contained in:
Rodrigo Nascimento 2017-11-14 20:49:17 -02:00 committed by Guilherme Gazzo
parent 114c9727ce
commit 675a61caba
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import React from 'react';
import { Platform } from 'react-native';
import { StackNavigator, DrawerNavigator, NavigationActions, HeaderBackButton } from 'react-navigation';
import Sidebar from '../../containers/Sidebar';
@ -76,7 +77,10 @@ const Routes = DrawerNavigator(
},
{
contentComponent: Sidebar,
drawerPosition
drawerPosition,
navigationOptions: {
drawerLockMode: Platform.OS === 'ios' ? 'locked-closed' : 'unlocked'
}
}
);