inside my application index.io.js there is only 1 ScrollView
that is wrapped inside a View
under the render
function. Sometimes I can scroll to the very bottom of the ScrollView and keep the screen there. However the ScrollView would bounce back to the top of the screen and fail to stay at the bottom sometimes.
Does anyone know what is happening? Thanks.
render() {
return <View style={{flex: 1}}>
<ScrollView>
<Text>234</Text>
<Text>234</Text>
<Text>234</Text>
<Text>234</Text>
// .... repeat so many times ...
</ScrollView>
</View>
}
p.s: my RN is 0.28.0, iOS deployment target is 8.0