react-native-web-lists
react-native-web-lists copied to clipboard
Uncaught TypeError: scrollToOffset is not a function
The problem I want to use scrollToOffset to let the FlatList component scroll to the specified location, but the console shows an error message that scrollToOffset is not a function
<Flatlist
ref={ f => this.listView = f}
/>
...
this.listView.scrollToOffset({
animated: false,
offset: 0,
})
Environment
- React Native for Web (version):0.5.4
- React (version):16.0.0-alpha.12
Thanks for the feedback. The refs are not forwarded in FlatList and SectionList. Can you send a PR?
Alternatively, try the new experimental FlatList of react-native-web 0.6+