What does it mean? (https://facebook.github.io/react-native/docs/scrollview)
Keep in mind that ScrollViews must have a bounded height in order to work
Who has to have so called bounded height? ScrollView
itself? or its very parent? Or its child?
<SafeAreaView style={{height: ...}}> <= this?
<ScrollView style={{height: ...}}> <= this?
<View style={{height: ...}}> <= this?
....
</View>
</ScrollView>
</SafeAreaView>