在Drawer中显示固定路线

时间:2017-06-26 14:24:22

标签: reactjs react-native routes drawer react-navigation

我正在尝试通过整个应用修复抽屉菜单的路线名称。因此抽屉应始终显示相同的名称,即使其他一些路线也可用(通过抽屉中显示的路线)。

现在的样子: enter image description here

它应该是什么样的: enter image description here

相关代码:

withActions

希望它足够清楚!感谢

1 个答案:

答案 0 :(得分:0)

使用DrawerNavigator的contentComponent道具解决了这个问题。 就这么简单: Drawer: { name: 'Drawer', screen: DrawerNavigator(DrawerRoutes, { contentComponent: DrawerView, }), },

其中DrawerView只是一个带有FlatList的自定义组件。