Merge pull request #1630 from GetStream/fix/nullable-createdAt

This commit is contained in:
Sahil Kumar
2023-06-20 17:03:10 +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
@@ -76,7 +76,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
Widget child = StreamSendingIndicator(
message: message,
isMessageRead: isMessageRead,
size: style!.fontSize,
size: style?.fontSize,
);
if (isMessageRead) {
@@ -86,7 +86,7 @@ class SendingIndicatorBuilder extends StatelessWidget {
if (memberCount > 2)
Text(
readList.length.toString(),
style: style.copyWith(
style: style?.copyWith(
color: streamChatTheme.colorTheme.accentPrimary,
),
),