The ListView component is deprecated. We should replace our usages with SectionList or FlatList as appropriate.
SectionList and FlatList offer reduced memory usage and improved performance over the deprecated ListView. However, we might not be able to completely avoid using ListView for components such as SortableListView which internally depend on ListView.
The
ListView
component is deprecated. We should replace our usages withSectionList
orFlatList
as appropriate.SectionList
andFlatList
offer reduced memory usage and improved performance over the deprecatedListView
. However, we might not be able to completely avoid usingListView
for components such asSortableListView
which internally depend onListView
.