Navigator navigation navigator moves the main content when you open the box

I want to open the box and move the main content to the side.

example like this

enter image description here

+4
source share
1 answer

You can create DrawerNavigatorlike this

const MyApp = DrawerNavigator({
  Home: {
    screen: MyHomeScreen,
  },
  Notifications: {
    screen: MyNotificationsScreen,
  },
});

Take a look at this documentation.

https://reactnavigation.org/docs/navigators/drawer

-2
source

Source: https://habr.com/ru/post/1687754/


All Articles