hungify
hungify
@AlexMP-Dev You can turn off the default Flutter deep link handling by adding this line: `` And then handle the deep links yourself.
Issue 1: The `onDropTargetChange` event executes unnecessarily multiple times. 1. Event Flow: • When you drag Item A to the position of Item B, the `onDropTargetChange` event fires and performs...
I discovered the example in the repository and found the hook [useSortableField](https://github.com/atlassian/pragmatic-drag-and-drop/blob/e50c4656f9f13128f5fa764eb20e923b5c1b4b18/packages/documentation/examples/pieces/pinned-fields/hooks/use-sortable-field.tsx). However, it only reorders items when you drop them, not while dragging. So, there isn’t an out-of-the-box solution...
There is a guide [idea](https://github.com/atlassian/pragmatic-drag-and-drop/discussions/55#discussioncomment-10423141) available from @ampossardt.
Hey @bfourgeaud, @sashamilenkovic ! After testing on your repro : [bfourgeaud/formkit-dnd-issue105-repro](https://github.com/bfourgeaud/formkit-dnd-issue105-repro) - Version 0.2.6 Here quick response - The `longPressDuration` and `longPress` functions work correctly on iOS (iPhone 15, iOS...
Hey @sashamilenkovic ! Here quick response 1. nativeDrag is true ``` { nativeDrag: true, } ``` Works, but issue-1 persists. 2. nativeDrag = true and longPress = true ``` {...
Hey, @sashamilenkovic! After spending a lot of time debugging, I noticed that the setTimeout callback in HandleLongPress sometimes gets triggered and sometimes doesn’t on Android devices. However, it works perfectly...
Just to let you know, your import is not necessary because it is auto import by default. It only happens when I use the utils function inside the worker file,...
This issue is causing a difficult bug that is hard to investigate.
I don't understand how tick calculation works. Can someone help me?