How to set the cursor pointer to center of `feedback` widget of `Draggable` widget in flutter?

Viewed 12

My widget which is used as feedback value for Draggablewidget may have variable width because of included text length. Any ideas how to set the mouse pointer to center of feedback widget in any case?

1 Answers

See this answer

Basically, using the dragAnchorStrategy in the Draggable widget and setting it to have an Offset.

Related