You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found a "workaround" if you setup listDragOnLongPress=true it will make the magic, but of course would make also the list draggable instead of longPress.
There is another trick you can create a dragHandle with empty container to make just the item draggable
I did a quick research and the problem seems to be on DragAndDropBuilderParameters class that only has one parameter for this this.dragOnLongPress = true and it is setup by dragOnLongPress: widget.listDragOnLongPress, so it is the list the one setting up this value.
To make the dragging behavior to be immediate
Go to C:...\AppData\Local\Pub\Cache\hosted\pub.dev\drag_and_drop_lists-0.4.0\lib\drag_and_drop_builder_parameters.dart
and change the contructor value of this.dragOnLongPress to false.
For DragAndDropLists, having the parameter itemDragOnLongPress set to false does nothing.
Looking at the source code under drag_and_drop_lists.dart, you can search for itemDragOnLongPress and see that it is only initialized, never used.
Can this be fixed? Is there a work-around? I need dragging behavior to be immediate.
The text was updated successfully, but these errors were encountered: