hoverColor property
Color of the button while the mouse is hovering over it.
Defaults to null
.
Example:
@override
Widget build(BuildContext context) {
return SfChat(
actionButton: ChatActionButton(
hoverColor: Colors.grey,
),
);
}
Implementation
final Color? hoverColor;