如何在react-navigation V5中添加动态抽屉元素?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在react-navigation V5中添加动态抽屉元素?相关的知识,希望对你有一定的参考价值。
我正在尝试向我的应用添加动态抽屉。
function CustomDrawerContent(props)
return (
<SideMenu/>
);
function DrawerStack()
return (
<Drawer.Navigator
initialRouteName="Home"
drawerStyle=
backgroundColor: '#ffffff',
width: metrices.DEVICE_WIDTH * 0.7,
drawerContent=props => <CustomDrawerContent ...props />
>
<Drawer.Screen name="Home" component=Home />
</Drawer.Navigator>
);
像之前的反应导航一样,没有contentComponent。因此,我已经按照React Navigation的官方文档的建议完成了此操作。但无法获得动态的侧面菜单。
答案
您的SideMenu应该看起来像这样:
每一行都是一个DrawerItem,您有一个来自官方网站的示例。
import
DrawerContentScrollView,
DrawerItemList,
DrawerItem
from '@react-navigation/drawer'
function SideMenu(props)
return (
<DrawerContentScrollView ...props>
<DrawerItemList ...props />
<DrawerItem
label="Help"
onPress=() => Linking.openUrl('https://mywebsite.com/help')
/>
/* Here you can add as many as DrawerItems you want */
</DrawerContentScrollView>
);
以上是关于如何在react-navigation V5中添加动态抽屉元素?的主要内容,如果未能解决你的问题,请参考以下文章
最新版 react-navigation v5.0 上带有标题按钮的换屏
使用带有 Redux 和 Firebase 身份验证的 React-Navigation v5
iOS15 中后退按钮的 headerTintColor 被忽略(react-navigation v5)
React-Navigation v5 - 堆栈导航器之间的透明度
是否可以使用 react-navigation (v5) 以 UIModalPresentationPageSheet 或 UIModalPresentationFormSheet 样式呈现模式?
react-navigation v5 中的 Typescript StackNavigatonProps 和 Screen 道具