Created
May 15, 2020 14:12
-
-
Save infinitbility/976f02fd36493f36a25947b9b45abe26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// auto scroll function | |
autosScroll(){ | |
// X use for horizontal | |
let horizontalScroll = this.state.horizontalScroll; | |
// Y use for Vertical | |
let VerticalScroll = this.state.VerticalScroll; | |
this.ScrollView.scrollTo({x: horizontalScroll, y: VerticalScroll, animated: true}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment