actionButtonForegroundColor property

Color? actionButtonForegroundColor
final

Color for the foreground elements (text or icons) of action buttons.

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

Implementation

final Color? actionButtonForegroundColor;