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 - [[#1620]](https://github.com/GetStream/stream-chat-flutter/issues/1620) Fixed messages Are Not Hard Deleting even
after overriding the `onConfirmDeleteTap` callback. 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 ## 6.4.0
@@ -72,7 +72,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
Widget child = StreamSendingIndicator( Widget child = StreamSendingIndicator(
message: message, message: message,
isMessageRead: isMessageRead, isMessageRead: isMessageRead,
size: style!.fontSize, size: style?.fontSize,
); );
if (isMessageRead) { if (isMessageRead) {
@@ -82,7 +82,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
if (memberCount > 2) if (memberCount > 2)
Text( Text(
readList.length.toString(), readList.length.toString(),
style: style.copyWith( style: style?.copyWith(
color: streamChatTheme.colorTheme.accentPrimary, color: streamChatTheme.colorTheme.accentPrimary,
), ),
), ),