“位置怎么做:粘滞”在React Native上

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

我找不到如何在react native上执行类似https://codepen.io/dexnick4501/pen/dyKzGKq的操作。
我尝试了方法ScrollView stickyHeaderIndices。他不能接受子元素

<ScrollView stickyHeaderIndices={[0]}>
<View> <-- Here element select
  <Header /> <-- Here element not select
</View>
</ScrollView>
ymdaylpp

ymdaylpp1#

使用启用了stickySectionHeadersSectionList

<SectionList
  sections={DATA}
  keyExtractor={(item, index) => item + index}
  renderItem={({ item }) => (
    <Text style={styles.item}>{item}</Text>
  )}
  stickySectionHeadersEnabled={true}
  renderSectionHeader={({ section: { title } }) => (
    <Text style={styles.header}>{title}</Text>
  )}
/>

相关问题