How React Native ScrollView jumps to the top

React Native ScrollView How to Jump to the Top ?

There is a ScrollView in the page, click a Button to jump to the top of the ScrollView.

You can refer to the following examples:

<ScrollView  ref={component => this._scrollView = component}  />

 //this._scrollView.scrollTo(0, 0); this has animation effect

 

 this._scrollView.scrollWithoutAnimationTo(0,0); //This has no animation effect


---
Reference: http://stackoverflow.com/questions/29829375/how-to-scroll-to-bottom-in-react-native -listview

 

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=327049619&siteId=291194637