如何使用 react-native 创建侧边菜单?

How to create side menu with react-native?

我是 React Native 的新手,我想创建一个这样的侧边菜单,有什么参考吗?

我想说使用reactnavigation。那就是提供抽屉 要打开和关闭抽屉,请分别导航至 'DrawerOpen' 和 'DrawerClose'。

 this.props.navigation.navigate('DrawerOpen'); // open drawer
    this.props.navigation.navigate('DrawerClose'); // close drawer

https://reactnavigation.org/docs/drawer-based-navigation.html

或者这里举个例子 那也好。参考这个

https://github.com/dailydrip/react-native-navigation-sample

在这里您可以找到一个完整的模板,随时可用。

https://github.com/darde/react-native-sidemenu

这是我的一个简单项目,可以向您展示如何自己实现侧边菜单的想法。

https://github.com/reactazteam/PushyHorizontalMenu