Problem Statement
Why is FlatList preferred over ScrollView for large lists?
Explanation
FlatList uses lazy loading and virtualization, meaning only items currently visible on the screen are rendered.
This drastically reduces memory usage and improves performance on large lists.
Practice Sets
This question appears in the following practice sets: