react native - Scroll to top of ScrollView -
is there way scroll top of scrollview
in response button press?
i can force re-render
of whole page seems inefficient.
you can run "scrollto" method of scrollview. @ sources of scrollview component https://github.com/facebook/react-native/blob/master/libraries/components/scrollview/scrollview.js#l288
you can reference scrollview component setting ref property , using this.refs described here: https://facebook.github.io/react/docs/more-about-refs.html
Comments
Post a Comment