Reputation: 6560
The ReactNative documentation mentions that FlatList
has the feature of "Scroll loading" on this page: https://facebook.github.io/react-native/docs/flatlist.html
Does anyone know of examples of this feature?
Upvotes: 6
Views: 5660
Reputation: 96
onEndReached = { this.handLoadMore }
onEndReachedThreshold = { 100 }
For details go to the link.
Upvotes: 8