messageInputBackgroundColor method

Color messageInputBackgroundColor(
  1. BuildContext context
)

Implementation

Color messageInputBackgroundColor(BuildContext context) {
  final isDark = Theme.of(context).brightness == Brightness.dark;
  return isDark ? Colors.black : Colors.grey[300]!;
}