actionButtonFocusElevation property

double actionButtonFocusElevation
final

Depth of the action button's shadow when focused.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfChatTheme(
      data: SfChatThemeData(
        actionButtonFocusElevation: 8.0,
      ),
      child: SfChat(),
    ),
  );
}

Implementation

final double actionButtonFocusElevation;