Avoid using FlatList with the same orientation. Instead, restructure your code like this —
<ScrollView contentContainerStyle={style}>
Other components
{
data.map((item)=> <Somthing item={item}/>)
}
Other components
</ScrollView>