otherBubbleColor property

  1. @override
Color get otherBubbleColor
override

Color for other users' message bubbles.

Implementation

@override
Color get otherBubbleColor {
  final isDark = Theme.of(context).brightness == Brightness.dark;
  final surfaceColor = Theme.of(context).colorScheme.surface;
  return isDark ? surfaceColor.withOpacity(0.8) : surfaceColor;
}