Merge pull request #1630 from GetStream/fix/nullable-createdAt
This commit is contained in:
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user