From e008c7057b8e0a5418c4656431015bfb57ec3a8d Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Wed, 12 Jul 2023 17:35:46 +0530 Subject: [PATCH] chore: update CHANGELOG.md Signed-off-by: xsahil03x --- packages/stream_chat_flutter/CHANGELOG.md | 32 ++++++++++++----------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/packages/stream_chat_flutter/CHANGELOG.md b/packages/stream_chat_flutter/CHANGELOG.md index c3cdb8e4..06aaa704 100644 --- a/packages/stream_chat_flutter/CHANGELOG.md +++ b/packages/stream_chat_flutter/CHANGELOG.md @@ -1,5 +1,22 @@ ## Upcoming Beta +✅ Added + +- Added support for `StreamMessageInput.contentInsertionConfiguration` to specify the content insertion configuration. + [#1613](https://github.com/GetStream/stream-chat-flutter/issues/1613) + + ```dart + StreamMessageInput( + ..., + contentInsertionConfiguration: ContentInsertionConfiguration( + onContentInserted: (content) { + // Do something with the content. + controller.addAttachment(...); + }, + ), + ) + ``` + 🔄 Changed - Updated minimum supported `SDK` version to Flutter 3.10/Dart 3.0 @@ -200,21 +217,6 @@ ) ``` -- Added support for `StreamMessageInput.contentInsertionConfiguration` to specify the content insertion configuration. - [#1613](https://github.com/GetStream/stream-chat-flutter/issues/1613) - - ```dart - StreamMessageInput( - ..., - contentInsertionConfiguration: ContentInsertionConfiguration( - onContentInserted: (content) { - // Do something with the content. - controller.addAttachment(...); - }, - ), - ) - ``` - ## 6.3.0 🐞 Fixed