Michy
Michy

Reputation: 5

ReactNative FlatList detect scroll to the last Item on List

How can I detect if a user has scrolled to the end of the FlatList list so i can add a footer message that "You're now at the end of the list".

Any help will be appreciated.

Upvotes: 0

Views: 337

Answers (1)

Vanns35
Vanns35

Reputation: 466

You can use header/footer component in Flatlist For example,

<FlatList
    .....
   ListFooterComponent={<Text>You're now at the end of the list</Text>}
/> 

Upvotes: 1

Related Questions