After upgrading to react-native 0.61 i get a lot of warnings like that:
VirtualizedLists should never be nested inside plain ScrollViews with the same orient
The warning appears because ScrollView and FlatList share the same logic, if FlatList run inside ScrollView, it's duplicated
ScrollView
FlatList
By the way SafeAreaView doesn't work for me, the only way to solve is
SafeAreaView
{data.map((item, index) => { ...your code }}
The error disappears