I want to display a list in react native so which one is better approach
<ScrollView> <FlatList> </FlatList> </ScrollView> or <ScrollView> <VirtualizedList> </VirtualizedList> </ScrollView> 1st one throws error and i’ve to show data using map but that is not feasible so which one is better? I tried map to show data but it is not good with large number of data react-native view scrollview react-native-flatlist flatlist