diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f5faa64..f0153a4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,36 +1,6 @@ -## 0.1.35 +## 0.2.0-alpha+15 -- Add backgroundColor as part of StreamChatThemeData - -## 0.1.34 - -- Add `onUserAvatarTap` - -## 0.1.33 - -- Add default user and channel image to `StreamChatTheme` - -## 0.1.32 - -- Update llc version - -## 0.1.31 - -Added some parameters to `MessageInput` -- add actions parameter -- add textEditingController parameter -- add actionsLocation (RIGHT or LEFT) parameter -- add attachmentThumbnailBuilders -- add editMessageInputBuilder to customize the MessageInput while editing messages -- expose MessageInputState - -Using attachmentThumbnailBuilders it's possible to render custom attachment thumbnails both for standard and custom attachment types -Using MessageInput.of or a GlobalKey it's possible to call these methods: - -- `sendMessage` to send the message -- `pickFile` to open the gallery/camera to pick a file -- `addAttachment` to add a custom attachment to the message -- `showAttachmentModal` to show the modal (that's the behaviour of the attachmentButton) +- Add background color in StreamChatTheme ## 0.2.0-alpha+13 diff --git a/lib/src/message_widget.dart b/lib/src/message_widget.dart index 237a14fc..84100826 100644 --- a/lib/src/message_widget.dart +++ b/lib/src/message_widget.dart @@ -716,6 +716,9 @@ class _MessageWidgetState extends State child: Icon( Icons.close, size: 15, + color: StreamChatTheme.of(context) + .primaryIconTheme + .color, ), ), ), diff --git a/pubspec.yaml b/pubspec.yaml index d563c55c..13af2fc0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: stream_chat_flutter homepage: https://github.com/GetStream/stream-chat-flutter description: Stream Chat official Flutter SDK. Build your own chat experience using Dart and Flutter. -version: 0.2.0-alpha+14 +version: 0.2.0-alpha+15 environment: sdk: ">=2.3.0 <3.0.0"