Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/bubbles/bubble_special_one.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions lib/bubbles/bubble_special_three.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions lib/bubbles/bubble_special_two.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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,
Expand Down