How can I change the bool value of scrollEnabled
param of React Native ScrollView when scrolling reaches a certain position?
I do have a ScrollView inside a ScrollView, and the inner ScrollView doesn't respond because of the outer ScrollView. Inner ScrollView works when scrollEnabled
param is set to False
of outer ScrollView. My idea is to dynamically set outer ScrollView to scrollEnabled={false}
when reaches at the bottom. How do I do this.
Thanks,