diff --git a/lib/src/reaction_bubble.dart b/lib/src/reaction_bubble.dart index d8f8c623..5f416bab 100644 --- a/lib/src/reaction_bubble.dart +++ b/lib/src/reaction_bubble.dart @@ -134,16 +134,11 @@ class ReactionBubble extends StatelessWidget { borderColor, ), ); - - if (!flipTail) { - return tail; - } else { - return Transform( - transform: Matrix4.rotationY(pi), - alignment: Alignment.center, - child: tail, - ); - } + return Transform( + transform: Matrix4.rotationY(flipTail ? 0 : pi), + alignment: Alignment.center, + child: tail, + ); } }