version bump
This commit is contained in:
+2
-32
@@ -1,36 +1,6 @@
|
|||||||
## 0.1.35
|
## 0.2.0-alpha+15
|
||||||
|
|
||||||
- Add backgroundColor as part of StreamChatThemeData
|
- Add background color in StreamChatTheme
|
||||||
|
|
||||||
## 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<MessageInputState> 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)
|
|
||||||
|
|
||||||
## 0.2.0-alpha+13
|
## 0.2.0-alpha+13
|
||||||
|
|
||||||
|
|||||||
@@ -716,6 +716,9 @@ class _MessageWidgetState extends State<MessageWidget>
|
|||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.close,
|
Icons.close,
|
||||||
size: 15,
|
size: 15,
|
||||||
|
color: StreamChatTheme.of(context)
|
||||||
|
.primaryIconTheme
|
||||||
|
.color,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
name: stream_chat_flutter
|
name: stream_chat_flutter
|
||||||
homepage: https://github.com/GetStream/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.
|
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:
|
environment:
|
||||||
sdk: ">=2.3.0 <3.0.0"
|
sdk: ">=2.3.0 <3.0.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user