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);