首页 > 解决方案 > 如何从反应抽屉顶部删除空间

问题描述

我正在使用它,我在顶部得到了空白。任何人都可以提供我从顶部删除这个空白的详细信息。@react-导航/抽屉在此处输入图像描述

标签: react-nativereact-navigation-drawer

解决方案


在 DrawerContentScrollView 中,@react-navigation/drawer 代码中添加了默认填充 4,因此只需在 contentContainerStyle 中传递 paddingTop 属性即可删除它。

const insets = useSafeArea();

<DrawerContentScrollView
    contentContainerStyle={{
       paddingTop: insets.top,
    }}
   {...props}>
</DrawerContentScrollView>

推荐阅读