Jake Chasan
Jake Chasan

Reputation: 6560

Do Examples of "Scroll Loading" with FlatList Exist?

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

Answers (1)

Don
Don

Reputation: 96

onEndReached = { this.handLoadMore }
onEndReachedThreshold = { 100 }

For details go to the link.

https://medium.com/react-native-development/how-to-use-the-flatlist-component-react-native-basics-92c482816fe6

Upvotes: 8

Related Questions