actionButtonBackgroundColor property
Color for the background of action buttons.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
actionButtonBackgroundColor: Colors.blue,
),
child: SfChat(),
),
);
}
Implementation
final Color? actionButtonBackgroundColor;