actionButtonSplashColor property

Color? actionButtonSplashColor
final

Color for the splash effect of action buttons.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfChatTheme(
      data: SfChatThemeData(
        actionButtonSplashColor: Colors.red,
      ),
      child: SfChat(),
    ),
  );
}

Implementation

final Color? actionButtonSplashColor;