Flutter Desktop:如何在按钮悬停时禁用 "disabled" 鼠标光标?
Flutter Desktop: How to disable "disabled" mouse-cursor on button-hover?
默认情况下,在桌面上,flutter 中的 btns 在禁用时会更改鼠标光标:
我们想禁用此行为,或替换为不同的光标。
要覆盖 ElevatedButton
、TextButton
或 OutlinedButton
的默认 disabledMouseCursor,可以这样写:
ElevatedButton(
style: ElevatedButton.styleFrom(
disabledMouseCursor: SystemMouseCursors.basic,
),
// ...
)
有关详细信息,请参阅 ButtonStyle class。
默认情况下,在桌面上,flutter 中的 btns 在禁用时会更改鼠标光标:
我们想禁用此行为,或替换为不同的光标。
要覆盖 ElevatedButton
、TextButton
或 OutlinedButton
的默认 disabledMouseCursor,可以这样写:
ElevatedButton(
style: ElevatedButton.styleFrom(
disabledMouseCursor: SystemMouseCursors.basic,
),
// ...
)
有关详细信息,请参阅 ButtonStyle class。