Closed
Description
<SectionList
ListHeaderComponent={this.renderHeader}
ListFooterComponent={isLoadingMore && <ActivityIndicator />}
stickyHeaderIndices={[0]}
keyExtractor={this.props.keyExtractor || this.defaultKeyExtractor}
renderItem={this.renderItem}
directionalLockEnabled
getItemLayout={this.getItemLayout}
bounces={false}
onEndReached={this.handleLoadMore}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
stickySectionHeadersEnabled
renderSectionHeader={this.renderSectionHeader}
sections={this.porps.listData}
/>
ListHeaderComponent is not sticky and it scrolls as other Section Headers. How to fix it on top of the list ?