Search code examples
react-nativerecyclerlistviewflash-list

What is the difference between FlashList vs RecyclerListView in React Native


FlashList and RecyclerListView both use Recycle approach for rendering Lists, but what is the difference? In which case should I choose FlashList or RecyclerListView? What are the pros and cons?


Solution

  • FlashList is built on top of RecyclerListView. If you look at the package.json you can see that it's a dependency. Because a big company like shopify decided to create FlashList, I imagine they added extra functionality to the RecyclerListView, with the main one I can think of is the easiness of converting a FlatList to a FlashList