Added color properties to missing widgets in MessageInput

This commit is contained in:
Ayush Shekhar
2022-04-05 15:42:30 +05:30
parent 21c61486ca
commit b75ad22a5d
2 changed files with 3 additions and 0 deletions
@@ -3,6 +3,7 @@
🐞 Fixed 🐞 Fixed
-[[#892]](https://github.com/GetStream/stream-chat-flutter/issues/892): Fix default `initialAlignment` in `MessageListView`. -[[#892]](https://github.com/GetStream/stream-chat-flutter/issues/892): Fix default `initialAlignment` in `MessageListView`.
- Fix `MessageInputTheme.inputBackgroundColor` color not being used in some widgets of `MessageInput`
## 3.5.1 ## 3.5.1
@@ -480,6 +480,7 @@ class MessageInputState extends State<MessageInput> {
if (widget.editMessage == null) { if (widget.editMessage == null) {
child = Material( child = Material(
elevation: 8, elevation: 8,
color: _messageInputTheme.inputBackgroundColor,
child: child, child: child,
); );
} }
@@ -679,6 +680,7 @@ class MessageInputState extends State<MessageInput> {
gradient: _focusNode.hasFocus gradient: _focusNode.hasFocus
? _messageInputTheme.activeBorderGradient ? _messageInputTheme.activeBorderGradient
: _messageInputTheme.idleBorderGradient, : _messageInputTheme.idleBorderGradient,
color: _messageInputTheme.inputBackgroundColor,
), ),
child: Padding( child: Padding(
padding: const EdgeInsets.all(1.5), padding: const EdgeInsets.all(1.5),