diff --git a/lib/src/message_reactions_modal.dart b/lib/src/message_reactions_modal.dart index 375f5e0c..0527710a 100644 --- a/lib/src/message_reactions_modal.dart +++ b/lib/src/message_reactions_modal.dart @@ -227,16 +227,19 @@ class MessageReactionsModal extends StatelessWidget { ), Positioned( child: Align( - alignment: Alignment.centerLeft, + alignment: reverse + ? Alignment.centerRight + : Alignment.centerLeft, child: ReactionBubble( reactions: [reaction], + flipTail: !reverse, borderColor: messageTheme.reactionsBorderColor, backgroundColor: messageTheme.reactionsBackgroundColor, highlightOwnReactions: false, ), ), - bottom: 4, + bottom: 6, left: isCurrentUser ? 0 : null, right: isCurrentUser ? 0 : null, ),