hoverColor property

  1. @override
Color? hoverColor
final

Color of the action button when it is hovered.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    actionButton: AssistActionButton(
      hoverColor: Colors.yellow,
    ),
  );
}

Implementation

@override
final Color? hoverColor;