Daniel Merrill

Results 81 comments of Daniel Merrill

can you try the `beta` tagged release on NPM? https://www.npmjs.com/package/react-native-draggable-flatlist?activeTab=versions Just a word of warning though -- this is all still very bleeding edge, there may be some strange behavior/flickers...

can you submit a repro snack? Do you have other gesture handlers that could be stealing the gesture from the list?

If you have the draggable list nested in a scrollview you have to use the scrollview from react-native-gesture-handler and pass the outer scrollview ref on `simultaneousHandlers`, see: https://github.com/computerjazz/react-native-draggable-flatlist/pull/273#issue-600733261 Note that...

The draggable flatlist will steal the gesture unless you add an `activationDistance`. You probably also want to disable outer scroll while the drag is in progress. See: https://snack.expo.io/@computerjazz/rndfl-nested-scrollview-example please open...

yeah, you're gonna just have to ignore if you want to nest flatlists within scrollviews. The issue is that if you want flatlists-within-scrollables, virtualization will no longer work, since the...

Interesting. What would happen if you grabbed the lower item? both lists would collapse, but the item would still be under your finger, so there'd still be a big gap,...

hm, i've never seen this behavior -- can you share a snack?

Expo Snack is a way to share small react native projects that can run in the browser, or on device: https://snack.expo.dev/

Thanks, but there's a lot of missing dependencies so I can't run it. I did notice there is a LOT of complex logic in your `onDragEnd` (and elsewhere). Is it...

sounds like you're doing some double-nesting of scrollables. Can you use the `NestableScrollContainer` as your outer scrollview? (it's just an Animated scrollview under the hood, with some extra bookkeeping added:...