Currently there is a screen with the following schema:
<ScrollView>
<Header>
<FlatList> // virtualized
<Header>
<FlatList> // virtualized
<Header>
<FlatList> // virtualized
...
</ScrollView>
<Header> is just a header-alike stylized text.
It naturally gives a warning:
VirtualizedLists should never be nested inside plain ScrollViews with the same orientation - use another VirtualizedList-backed container instead.
There is a nice-working solution for a single list:
Q. But how to deal with multiple lists like in the schema above?