I want to open drawer and move main content to side.
example like this
In version 3.x of react-navigation
you could use drawerType: 'slide'
. See the following example:
const DrawerExample = createDrawerNavigator(
{
Inbox: {
path: '/',
screen: InboxStack,
},
Drafts: {
path: '/sent',
screen: DraftsStack,
},
},
{
initialRouteName: 'Drafts',
contentOptions: {
activeTintColor: '#e91e63',
},
drawerType: 'slide'
}
);
Notice the createDrawerNavigator()
instead of DrawerNavigator()
Documentation: https://reactnavigation.org/en/