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
@@ -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,
),
),