chore: add lerp, hashcode, ==, and diagnosticable to message_input_theme.dart

This commit is contained in:
groovinchip
2021-07-29 10:48:52 -04:00
parent 15defc4caa
commit 5afc274a6d
4 changed files with 91 additions and 10 deletions
@@ -328,7 +328,7 @@ class MessageInputState extends State<MessageInput> {
Widget build(BuildContext context) {
Widget child = DecoratedBox(
decoration: BoxDecoration(
color: _streamChatTheme.messageInputTheme.inputBackground,
color: _streamChatTheme.messageInputTheme.inputBackgroundColor,
),
child: SafeArea(
child: GestureDetector(
@@ -565,7 +565,7 @@ class MessageInputState extends State<MessageInput> {
child: DecoratedBox(
decoration: BoxDecoration(
borderRadius: _streamChatTheme.messageInputTheme.borderRadius,
color: _streamChatTheme.messageInputTheme.inputBackground,
color: _streamChatTheme.messageInputTheme.inputBackgroundColor,
),
child: Column(
mainAxisSize: MainAxisSize.min,