PedroBern / react-native-collapsible-tab-view

A cross-platform Collapsible Tab View component for React Native
MIT License
868 stars 171 forks source link

VirtualizedList missing #396

Closed adrianurs closed 5 months ago

adrianurs commented 5 months ago

Feature request

During the use of react-native-collapsible-tabs I noticed that there is no possibility of virtualization, that creates an incredible delay during render of complex items. As per rn docs 'Virtualization massively improves memory consumption and performance of large lists' which would be awesome if you want to render a complex item.

Current behavior

Currently is available only FlatList, which is fine for simple items

andreialecu commented 5 months ago

FlatList is implemented using VirtualizedList.

If you need more performance you can use FlashList which is also supported by this library.