chore: update CHANGELOG.md

Signed-off-by: xsahil03x <xdsahil@gmail.com>
This commit is contained in:
Sahil Kumar
2023-06-15 19:18:10 +05:30
committed by xsahil03x
parent d9be58ab8f
commit 607cd91bcf
+13
View File
@@ -22,6 +22,19 @@
)
```
- Added support for `StreamMessageWidget.onConfirmDeleteTap` to override the default action on delete confirmation.
[#1604](https://github.com/GetStream/stream-chat-flutter/issues/1604)
```dart
StreamMessageWidget(
...,
onConfirmDeleteTap: (message) async {
final channel = StreamChannel.of(context).channel;
await channel.deleteMessage(message, hard: false);
},
)
```
## 6.3.0
🐞 Fixed