How to set speed for scrollTo () in React Native?

I scroll the page with the click of a button using:

this.scrollTo({y: height, x: 0, animated: true})

Scrolling works fine, however I would like to slow down the scroll animation. How do we do this?

+6
source share

All Articles