fivecar / react-native-draglist

FlatList that can be reordered by dragging its items
MIT License
118 stars 19 forks source link

Disable FlatList scroll while dragging #6

Closed denisandrei01 closed 1 year ago

denisandrei01 commented 1 year ago

I found this problem where sometimes instead of moving the item, the list scrolls. ScrollBug

I managed to solve it by disabling the scroll on the FlatList while we have an activeKey.

fivecar commented 1 year ago

Neat. Thanks for submitting this. I had at first thought this change would cause auto-scroll to not work (when dragging items beyond the top or bottom of the screen), but in checking it in an app, auto-scroll appears to still work. I've also run the example app to make sure normal dragging/etc works.

Thank you for helping out, @denisandrei01 !

fivecar commented 1 year ago

Released fix as 3.0.2. Thanks, @denisandrei01 !