ScrollView Child Layout (JustifyContent) muss über die ContentContainerSyle -Requisite angewendet werden

//change your style prop in the scrollview to contentContainerStyle


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

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