actionButtonDisabledForegroundColor property
Color for the foreground elements (text or icons) of action buttons when disabled.
Widget build(BuildContext context) {
return Scaffold(
body: SfChatTheme(
data: SfChatThemeData(
actionButtonDisabledForegroundColor: Colors.grey,
),
child: SfChat(),
),
);
}
Implementation
final Color? actionButtonDisabledForegroundColor;