Skip to content

Commit

Permalink
fix(ui): align new widgets to develop fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
imtoori committed Apr 14, 2022
1 parent 2bd088d commit affe37e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/stream_chat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
- [[#1054]](https://github.com/GetStream/stream-chat-flutter/issues/1054) Fix `Unsupported operation: Cannot remove from an unmodifiable list`.
- [[#1033]](https://github.com/GetStream/stream-chat-flutter/issues/1033) Hard delete from dashboard does not delete message from client.
- Send only `user_id` while reconnecting.
- [[#1081]](https://github.com/GetStream/stream-chat-flutter/issues/1081) Fixed a bug with user reconnection.

✅ Added

Expand Down
2 changes: 1 addition & 1 deletion packages/stream_chat_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
✅ Added

- Added support to pass `autoCorrect` to `StreamMessageInput` for the text input field
- Added support to control the visibility of the default emoji suggestions overlay
- Added support to control the visibility of the default emoji suggestions overlay in `StreamMessageInput`
- Added support to build custom widget for scrollToBottom in `StreamMessageListView`

🐞 Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,7 @@ class StreamMessageInputState extends State<StreamMessageInput>
elevation: widget.elevation ??
_streamChatTheme.messageInputTheme.elevation ??
8,
color: _messageInputTheme.inputBackgroundColor,
child: child,
);
}
Expand Down Expand Up @@ -789,6 +790,7 @@ class StreamMessageInputState extends State<StreamMessageInput>
gradient: _focusNode.hasFocus
? _messageInputTheme.activeBorderGradient
: _messageInputTheme.idleBorderGradient,
color: _messageInputTheme.inputBackgroundColor,
),
child: Padding(
padding: const EdgeInsets.all(1.5),
Expand Down

0 comments on commit affe37e

Please sign in to comment.