如何更改@react-navigation/drawerItemList的样式

0qx6xfy6  于 2022-11-17  发布在  React
关注(0)|答案(1)|浏览(133)

我使用的是@react-navigation/drawer。
而且它是非常恼人的与风格内<DrawerContentScrollView>
我有demo here(请在andorid上运行,在web上没有paddingTop)
问题在于:

在DrawerContentScrollView中的视图内部有一个样式:

{
  "paddingTop": 34.18181800842285,
  "paddingStart": 0,
  "paddingEnd": 0
}

最好不要在顶端自订页首。似乎是StatusBar的padding。我不知道在哪里修正它。我想要关闭它或变更paddingTop:0.

有人能解决这个问题吗?

olhwl3o2

olhwl3o21#

添加**内容容器样式={{顶部填充:0}}**转换为<DrawerContentScrollView>

<DrawerContentScrollView
  {...props}
  contentContainerStyle={{paddingTop: 0}}>
  <DrawerItemList {...props} />
</DrawerContentScrollView>

相关问题