Scrollview Child Mayout (useyifyContent) должен применяться через Prop ContentContainerStyle

//change your style prop in the scrollview to contentContainerStyle


//from
<ScrollView style={{your style}}>
</ScrollView>

//to
<ScrollView contentContainerStyle={{your style}}>
</ScrollView>
Happy Hamerkop