DEV Community

Discussion on: I created the simplest implementation of an infinite paging FlatList using Hooks in ReactNative.

Collapse
 
milansusnjar_ profile image
Milan Šušnjar

Like this, I guess.
const lastIndex = data.length - 1
const lastItem = data.length ? data[lastIndex] : null

Thread Thread
 
technoplato profile image
Michael Lustig - halfjew22@gmail.com

It depends on what we’d want to pass to the load method in the case of an empty result set. I think your way works great.

Bigger question though: can you imagine a way to make this more customizable to use any load function in a plug and play manner?