hoverElevation property

  1. @override
double? hoverElevation
final

Specifies the shadow depth of the action button when it is hovered.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    actionButton: AssistActionButton(
      hoverElevation: 6.0,
    ),
  );
}

Implementation

@override
final double? hoverElevation;