GetStream/react-native-bidirectional-infinite-scroll

ListHeaderComponent not working

luco opened this issue · 1 comments

luco commented

Hey,

I'm trying to use the ListHeaderComponent, but it's not working. It's working fine with RN native FlatList:

				<FlatList
					ListHeaderComponent={() => {
						return <UsersStatuses />
					}}
					ref={flatList}
					data={data.FollowingPosts.posts}
					keyExtractor={item => item._id}
					renderItem={({ item }) => <Post data={item} />}
					onStartReached={loadNewPosts}
					onEndReached={loadPreviousPosts}
					onStartReachedThreshold={0.2}
					onEndReachedThreshold={0.2}
					enableAutoscrollToTop={false}
				/>

@luco you need to add showDefaultLoadingIndicators={false} in order to see the ListHeaderComponent or ListFooterComponent