Move a draggable to a dragtarget automatically for the user in Flutter Move a draggable to a dragtarget automatically for the user in Flutter flutter flutter

Move a draggable to a dragtarget automatically for the user in Flutter


No, that is not possible. As the name says Draggables meaning it has to be dragged. Look what the official documentation says about Draggables and DragTarget

Draggable

A widget that can be dragged from to a DragTarget.

DragTarget

A widget that receives data when a Draggable widget is dropped.

I hope this helps.