
[英]Flutter - Feedback of Draggable widget does not animate properly
[英]Flutter: Is it possible to change the mouse cursor for `feedback` widget of `Draggable` widget?
在拖動小部件拖動時,我想將 cursor 更改為更合適的SystemMouseCursor.grabbing
但不幸的是,通過簡單的 Flutter 工具無法做到這一點。 也許有人已經有過這樣的經歷?
經過一番頭腦風暴后,我找到了足夠簡單的解決方案。 所有需要做的就是用MouseRegion
包裝childWhenDragging
小部件:
Draggable(
feedback: <dragging widget>,
childWhenDragging: Container(
color: Theme.of(context).colorScheme.secondary.withOpacity(0.1),
child: MouseRegion(
cursor: SystemMouseCursors.grabbing,
child: <draggable child>,
),
),
)
聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.