2

I'm looking a way to make a drawer inside a drawer like a double menu. Here is what I want to make it.

https://dribbble.com/shots/2139038-Double-menu https://dribbble.com/shots/2139038-Double-menu

const drawerNavigatorConfig = {
  drawerType: "slide"
};


export const Navigator = createDrawerNavigator(
  {
    home: {
      screen: HomeScreen,
      navigationOptions: {
        drawerLabel: "Home Screen"
      }
    },
    test: {
      screen: TestScreen,
      navigationOptions: {
        drawerLabel: "Test Screen"
      }
    },
  },
  drawerNavigatorConfig
);

I simply could not find a way to achieve this double menu idea.

FreakyCoder
  • 840
  • 11
  • 24

0 Answers0