Daniel Merrill

Results 103 comments of Daniel Merrill
trafficstars

yeah, this is a known web bug. web treats containers differently than native -- in RN, if I wrap a scrollable list in a container, the container does not expand...

mind posting the snack anyway? I've been having to patch in `global__reanimatedWorkletInit` in all my snacks, not sure what's up on their end -- see the `shims` file: https://snack.expo.dev/@computerjazz/draggable-flatlist-examples

cool thanks! last question -- do you know if you actually need the `NestableScrollContainer`? The purpose of the container was to be able to autoscroll an outer container when using...

Hm, I'm guessing the fact that the nestable version works is just a side effect of it having a default `activationDistance` prop, which is there for this purpose -- to...

what version of reanimated are you on?

Sounds like you may not actually be using the latest draggable flatlist version. All v1 code was removed as part of the 4.0.0 refactor last year. Please check your lockfile...

you could do this with one flatlist -- you may have to modify your data a bit, something like: ```ts const data = [ { type: 'item', data: 'a' },...

it's up to you to decide when something is draggable by calling `drag()` in `renderItem`. So if your separator does not call `drag()`, it will not be draggable.

upon further exploration, it seems like this issue isn't constrained to react-navigation (I updated OP to reflect this)

TLDR, here's what worked for me: ``` brew tap --repair brew update brew upgrade ``` I finally figured out what was causing this error for me: `brew` was invisibly failing...