From b27f04bf362b1efa1143ff643e0f36345ec3dd92 Mon Sep 17 00:00:00 2001 From: Sahil Kumar Date: Wed, 13 Jan 2021 12:09:36 +0530 Subject: [PATCH] [MessageWidget] Fix bottomRow children position Signed-off-by: Sahil Kumar --- lib/src/message_widget.dart | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/src/message_widget.dart b/lib/src/message_widget.dart index 989de8c8..a74477b2 100644 --- a/lib/src/message_widget.dart +++ b/lib/src/message_widget.dart @@ -561,7 +561,6 @@ class _MessageWidgetState extends State { }; children.addAll([ - if (showSendingIndicator) _buildSendingIndicator(), if (showInChannel || showThreadReplyIndicator) ...[ if (showThreadParticipants) SizedBox.fromSize( @@ -585,10 +584,9 @@ class _MessageWidgetState extends State { Jiffy(widget.message.createdAt.toLocal()).jm, style: widget.messageTheme.createdAt, ), + if (showSendingIndicator) _buildSendingIndicator(), ]); - // if (widget.reverse) children = children.reversed.toList(); - final showThreadTail = !(hasUrlAttachments || isGiphy || isOnlyEmoji) && (showThreadReplyIndicator || showInChannel);