My code gets Json data to an array lists the data using a FlatList. It looks like a phonebook photo and text in a row.
Here is My code:
Here are some improvements you can do to optimize your flatlist:
onEndReached and onEndReachedThreshold can help you.PureComponent for render item
PureComponent improves the rendering and memory usage of your component, creating render items as pure gives you a better performance experiencegetItemLayout prop
Hope it helps