incomingBubbleContentBackgroundColor property

Color? incomingBubbleContentBackgroundColor
final

Background color of incoming message bubbles.

Widget build(BuildContext context) {
  return Scaffold(
    body: SfChatTheme(
      data: SfChatThemeData(
        incomingBubbleContentBackgroundColor: Colors.grey[300],
      ),
      child: SfChat(),
    ),
  );
}

Implementation

final Color? incomingBubbleContentBackgroundColor;