React Native FlatList load more when we get to the bottom of the list
How to make load more with FlatList of React Native (Not infinite) I've done this, but unfortunately it loads as infinitely. This is my code snippet <FlatList data={this.props.data} renderItem={({ item, separators }) => ( <TouchableHighlight onPress={() => this._onPress(item)} onShowUnderlay={separators.highlight} onHideUnderlay={separators.unhighlight} > <Text> {item.title} </Text> </TouchableHighlight> )} keyExtractor={item => item.id} ListFooterComponent={this.renderFooter} onEndReached={this.props.handleLoadMore} onEndThreshold={0} /> And my handleLoadMore handleLoadMore = () => { console