huhuang03/reorderable_grid_view

Drag start feedback

Closed this issue · 4 comments

Add feedback when long press trigger dragging

You mean a callback?

You mean a callback?

Nope, I mean When user long press trigger dragging, there should be a vibration feedback.
It would be better if you could provide a callback for the dragging life cycle

You can try 2.2.3-alpha.2. Add an option like this:

onDragStart: (index) {
    print("onDragStart: $index");
}

You can try 2.2.3-alpha.2. Add an option like this:

onDragStart: (index) {
    print("onDragStart: $index");
}

With this callback, I can meet my needs.
Thanks a lot!