NativeBase (React Native) avoid scrolling back to top
I ran into this issue as well, and this proved to be a simple workaround for me.
<Container>
<ScrollView>{/* <- Use this rather than Content */}
{/* form with this issue */}
</ScrollView>
</Container>