我们怎样才能使ListHeaderComponent成为SectionList中的粘性标题?

Muh*_*man 5 react-native expo react-native-flatlist react-native-sectionlist

描述

我在里面使用水平选项卡栏ListHeaderComponent,我想将其ListHeaderComponent作为SectionList中的粘性标题。我们可以在平面列表中制作粘性标题,但它在部分列表stickyHeaderIndices={[0]}中不起作用

反应本机版本:

React Native Environment Info:
    System:
      OS: macOS 10.14.6
      CPU: (12) x64 Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz
      Memory: 38.35 MB / 16.00 GB
      Shell: 5.3 - /bin/zsh
    Binaries:
      Node: 12.15.0 - /usr/local/bin/node
      Yarn: 1.21.1 - /usr/local/bin/yarn
      npm: 6.13.4 - /usr/local/bin/npm
      Watchman: 4.9.0 - /usr/local/bin/watchman
    SDKs:
      iOS SDK:
        Platforms: iOS 12.4, macOS 10.14, tvOS 12.4, watchOS 5.3
      Android SDK:
        API Levels: 28, 29
        Build Tools: 28.0.3, 29.0.1, 29.0.2
        System Images: android-26 | Google Play Intel x86 Atom, android-27 | Google APIs Intel x86 Atom
    IDEs:
      Android Studio: 3.5 AI-191.8026.42.35.5791312
      Xcode: 10.3/10G8 - /usr/bin/xcodebuild
    npmPackages:
      react: 16.8.6 => 16.8.6
      react-native: 0.59.8 => 0.59.8
    npmGlobalPackages:
      rename-horizon: 1.1.0
      react-native-cli: 2.0.1
Run Code Online (Sandbox Code Playgroud)

重现步骤

提供重现问题的步骤的详细列表。

  1. 制作部分列表并添加ListHeaderComponent道具
  2. 添加stickyHeaderIndices={[0]}到节列表中,它不会成为ListHeaderComponent粘性标题

预期成绩

它应该制作ListHeaderComponent为粘性标题。或使其粘性标题的替代方法

食物熊猫

小智 2

使用这样的东西。

<View style={{ flex: 1 }}>
  {renderStickyListHeaderComponent()}
  <SectionList
    {...sectionListprops}
    ref={sectionListRef}     
    sections={sectionData}
    stickySectionHeadersEnabled={false}   
  />
</View>
Run Code Online (Sandbox Code Playgroud)