我们可以将sectionList(或scrollView)的粘性标题粘贴到滚动视图顶部的相对位置吗?

use*_*795 5 reactjs react-native react-native-android

当我们滚动 sectionList 时,我们可以将粘性标题粘贴在滚动视图的顶部。

但我需要的是在粘性标题和滚动视图顶部之间设置边距,即在滚动视图顶部之间留出空隙。

有谁知道如何处理?

Arc*_*ano 0

在 iOS 中,我处理的方式是在水平边距上再添加两个 props

      contentContainerStyle={{
        marginHorizontal: 16,
      }}
      ListHeaderComponent={<View style={{ height: 16 }} />}
      ListFooterComponent={<View style={{ height: 16 }} />}
Run Code Online (Sandbox Code Playgroud)

这可以确保标题会粘在顶部并且不会渗透内容。