Digging this issue up, I came with a solution similar to Pir Shukarullah Shah 's.
I'm using FlatList instead of my regular item, taking into account only the first item in 's renderItem
method.
_renderList = ({ section, index }) => {
if (index !== 0) return null;
return (
)
}
...