expo / react-native-invertible-scroll-view

An invertible ScrollView for React Native
MIT License
465 stars 86 forks source link

check the end of list in InvertibleScrollView? #62

Open behi1989 opened 4 years ago

behi1989 commented 4 years ago

Hi, How do I check the end of list in InvertibleScrollView? for example

if(this.InvertibleScrollView.scrollTo(0) === 0) { 
     ...
     ... 
}

Or

if(this.InvertibleScrollView.scrollTo(0) ) { 
     ...
     ... 
}

I need to check the end of the list But I didn't find a solution.