Merge branch 'develop' into refactor/message-status

This commit is contained in:
Sahil Kumar
2023-06-20 17:15:35 +05:30
committed by GitHub
2 changed files with 4 additions and 2 deletions
@@ -4,6 +4,8 @@
- [[#1620]](https://github.com/GetStream/stream-chat-flutter/issues/1620) Fixed messages Are Not Hard Deleting even
after overriding the `onConfirmDeleteTap` callback.
- [[#1621]](https://github.com/GetStream/stream-chat-flutter/issues/1621) Fixed `createdAtStyle` null check error
in `SendingIndicatorBuilder`.
## 6.4.0
@@ -72,7 +72,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
Widget child = StreamSendingIndicator(
message: message,
isMessageRead: isMessageRead,
size: style!.fontSize,
size: style?.fontSize,
);
if (isMessageRead) {
@@ -82,7 +82,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
if (memberCount > 2)
Text(
readList.length.toString(),
style: style.copyWith(
style: style?.copyWith(
color: streamChatTheme.colorTheme.accentPrimary,
),
),