如何使react导航抽屉永久打开

4dbbbstv  于 2023-03-31  发布在  React
关注(0)|答案(1)|浏览(171)

我想在react-native中做一个类似web的侧边栏菜单,一个侧边栏可以永久打开,抽屉打开时可以访问应用程序的主体
enter image description here

z31licg0

z31licg01#

永久打开抽屉drawerType设置为permanent。

screenOptions={{
    drawerType: dimensions.width >= 768 ? 'permanent' : 'front',
  }}

相关问题