I have a component in ListHeaderComponent. I want to convert this into a sticky header. How can I do it? In FlatList, it is sufficient to give stickyHeaderIndices={[0]}. But this does not work in FlashList.
<FlatList
stickyHeaderIndices={[0]}
ListHeaderComponent={ <Header/> }
/>
I have a component in
ListHeaderComponent. I want to convert this into a sticky header. How can I do it? InFlatList, it is sufficient to givestickyHeaderIndices={[0]}. But this does not work inFlashList.