How to use FlatList feature in older react native versions ,my react native version is 0.41.2. Please suggest.I want to use flatlist in the collapsible sets to render large data.
alternate to FlatList in react native
10k views Asked by Mobile Safaltek At
4
There are 4 answers
3
On
Just use RecyclerListView instead. It is faster than FlatList and battle tested at Flipkart. Works 0.30+
Link: https://github.com/Flipkart/ReactEssentials
You can read more about it here: https://medium.com/@naqvitalha/recyclerlistview-high-performance-listview-for-react-native-and-web-e368d6f0d7ef
FlatList was released on 0.44. For previously versions you should use ListView. Simple example from the official docs:
https://facebook.github.io/react-native/docs/listview.html