adar2378 / draggable_widget

A flutter package which will help you to create a draggable widget that can be dragged around the screen.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

click widget jump position

callmejm opened this issue · comments

I facing an issue when first action is not "drag" is "click", the widget will jump to top left position, below is the video

bandicam.2021-11-08.10-51-15-293.mp4

hello @callmejm I have tried to make it not jump by doing the following:

inside the widget, just add this:
touchDelay: Duration(milliseconds: 100),

e.g.

DraggableWidget( 
 touchDelay: Duration(milliseconds: 100),
 .....)
commented

image

"hardTop" initialization did not take into account the position difference. Adding these two lines of code can solve the problem.