react-native-grid-view
react-native-grid-view copied to clipboard
Cell Recycling
Hi,
I saw in your README.md that you mention cell recycling: "uses a 'ListView' in order to have a proper recycle mechanism".
React Native's ListView
is simply a wrapper around a UIScrollView
and doesn't recycle cells - but instead instantiates all cells up front.
Is your package doing something above and beyond the ListView
to achieve recycling?