I have an app with one ScrollView and a button and a long text inside inside:
return (
<ScrollView>
<Button onPress={slowlyScrollDown} title="Slowly scroll a bit down..." />
<Text>
[ Very long text here where user has to scroll ]
</Text>
</ScrollView>
)
When the user presses the button, I want to slowly scroll down a bit, like that he can see like the first 5-10 lines of the Text.
I would accept any answer that provides a piece of code how I can implement that.