chore: update CHANGELOG.md

Signed-off-by: xsahil03x <xdsahil@gmail.com>
This commit is contained in:
Sahil Kumar
2023-06-16 02:40:28 +05:30
committed by xsahil03x
parent 09d9ec3ed5
commit 3f61cdaea2
+16
View File
@@ -35,6 +35,22 @@
)
```
- Added support for `StreamMessageWidget.quotedMessageBuilder` and `StreamMessageInput.quotedMessageBuilder` to override
the default quoted message widget. [#1606]()
```dart
StreamMessageWidget(
...,
quotedMessageBuilder: (context, message) {
return Container(
color: Colors.red,
child: Text('Quoted Message'),
);
},
)
```
## 6.3.0
🐞 Fixed