From ad116fd32b1fb75b2facca66ab9ded0f13bf86b6 Mon Sep 17 00:00:00 2001 From: "Michael W. Aziz" Date: Thu, 15 Jan 2026 13:59:26 +0200 Subject: [PATCH] [FEAT] Added hover and focus colors for action fields --- lib/src/Fields/src/action_field.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/src/Fields/src/action_field.dart b/lib/src/Fields/src/action_field.dart index 166b27e..60cadba 100644 --- a/lib/src/Fields/src/action_field.dart +++ b/lib/src/Fields/src/action_field.dart @@ -147,6 +147,8 @@ class _AstromicActionFieldState extends State> { child: Material( type: MaterialType.transparency, child: InkWell( + hoverColor: widget.style!(widget.configuration?.isEnabled ?? true).hoverColor, + focusColor: widget.style!(widget.configuration?.isEnabled ?? true).focusColor, onTap: () async { if (widget.onTap != null) { (T item, String label)? c = _currentValue;