Im trying to scroll to end of scrollView if user chooses 'Yes' from an alert....using refs. However its not working...can anyone help?
Below is code for scrollView component opening tag
<ScrollView
ref={ref => {this.scrollView = ref;}}>
Below is code elsewhere in class
Alert.alert(
'Scroll to end?',
[
{
text: 'No',
style: 'cancel',
},
{
text: 'Yes',
onPress: () => {
this.scrollView.scrollToEnd();
},
},
],
);