marcocesarato / react-native-big-list

This is a high performance list view for React Native with support for complex layouts using a similar FlatList usage to make easy the replacement. This list implementation for big list rendering on React Native works with a recycler focused on performance and memory usage and so it permits processing thousands items on the list.
https://marcocesarato.github.io/react-native-big-list-docs/
Apache License 2.0
525 stars 41 forks source link

onScrollEndDrag and onScrollBeginDrag not working #359

Open makibibo opened 1 year ago

makibibo commented 1 year ago

Hello,

I'm trying to use the onScrollEndDrag and onScrollBeginDrag but it doesn't fire.

Sample Code: <BigList {...props} onScrollEndDrag={() => console.log('onScrollEndDrag')} onScrollBeginDrag={() => console.log('onScrollBeginDrag')} />

Can you help me how to fix it, thanks.