From 32c394947dfd4f14484edd7f4c920e6fd50b6842 Mon Sep 17 00:00:00 2001 From: Zak Barbuto Date: Wed, 18 Jun 2025 08:00:43 +0930 Subject: [PATCH] Revert visibility change on special chat bubbles --- lib/bubbles/bubble_special_one.dart | 6 +++--- lib/bubbles/bubble_special_three.dart | 6 +++--- lib/bubbles/bubble_special_two.dart | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/bubbles/bubble_special_one.dart b/lib/bubbles/bubble_special_one.dart index 2ba5ba5..dcfaa37 100644 --- a/lib/bubbles/bubble_special_one.dart +++ b/lib/bubbles/bubble_special_one.dart @@ -71,7 +71,7 @@ class BubbleSpecialOne extends StatelessWidget { child: Padding( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 2), child: CustomPaint( - painter: _SpecialChatBubbleOne( + painter: SpecialChatBubbleOne( color: color, alignment: isSender ? Alignment.topRight : Alignment.topLeft, tail: tail), @@ -119,12 +119,12 @@ class BubbleSpecialOne extends StatelessWidget { /// /// [color],[alignment] and [tail] can be changed -class _SpecialChatBubbleOne extends CustomPainter { +class SpecialChatBubbleOne extends CustomPainter { final Color color; final Alignment alignment; final bool tail; - _SpecialChatBubbleOne({ + SpecialChatBubbleOne({ required this.color, required this.alignment, required this.tail, diff --git a/lib/bubbles/bubble_special_three.dart b/lib/bubbles/bubble_special_three.dart index 93d73d5..16e9b3b 100644 --- a/lib/bubbles/bubble_special_three.dart +++ b/lib/bubbles/bubble_special_three.dart @@ -71,7 +71,7 @@ class BubbleSpecialThree extends StatelessWidget { child: Padding( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 2), child: CustomPaint( - painter: _SpecialChatBubbleThree( + painter: SpecialChatBubbleThree( color: color, alignment: isSender ? Alignment.topRight : Alignment.topLeft, tail: tail), @@ -119,12 +119,12 @@ class BubbleSpecialThree extends StatelessWidget { /// /// [color],[alignment] and [tail] can be changed -class _SpecialChatBubbleThree extends CustomPainter { +class SpecialChatBubbleThree extends CustomPainter { final Color color; final Alignment alignment; final bool tail; - _SpecialChatBubbleThree({ + SpecialChatBubbleThree({ required this.color, required this.alignment, required this.tail, diff --git a/lib/bubbles/bubble_special_two.dart b/lib/bubbles/bubble_special_two.dart index 3de6b76..d714196 100644 --- a/lib/bubbles/bubble_special_two.dart +++ b/lib/bubbles/bubble_special_two.dart @@ -71,7 +71,7 @@ class BubbleSpecialTwo extends StatelessWidget { child: Padding( padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 2), child: CustomPaint( - painter: _SpecialChatBubbleTwo( + painter: SpecialChatBubbleTwo( color: color, alignment: isSender ? Alignment.topRight : Alignment.topLeft, tail: tail), @@ -119,12 +119,12 @@ class BubbleSpecialTwo extends StatelessWidget { /// /// [color],[alignment] and [tail] can be changed -class _SpecialChatBubbleTwo extends CustomPainter { +class SpecialChatBubbleTwo extends CustomPainter { final Color color; final Alignment alignment; final bool tail; - _SpecialChatBubbleTwo({ + SpecialChatBubbleTwo({ required this.color, required this.alignment, required this.tail,