FlatList renders child elements lazily and only starts rendering when they are about to appear on the screen.
So is it rendered in units of items or in units of smallest components?
Suppose a list has 3 items, one Item occupies 3 screens, and each item contains 10 components
The first 3 items of the first item are on the first screen, then only the first rendering is done Should the first 3 (or 4, 5) components still render the first item?
All of them.
FlatList
only knows thatitem
is not on the screen, it is not worth the components insideitem
.