How do you use FlatList with hooks in React Native?
import { Dimensions } from ‘react-native’;…
Read moreHow do you implement infinite scroll in React Native?
FlatList from React Native has built-in support for infinite scroll in a single direction (from the end of the list). You can add a prop onEndReached on FlatList . This function gets called when your scroll is near the end of the list, and thus you can append more items to the list from this function.
Read more