actionButtonDisabledBackgroundColor property
Color for the background of action buttons when disabled.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
actionButtonDisabledBackgroundColor: Colors.grey[400],
),
child: SfChat(),
),
);
}
Implementation
final Color? actionButtonDisabledBackgroundColor;