alignment changes
This commit is contained in:
@@ -112,12 +112,12 @@ class MessageReactionsModal extends StatelessWidget {
|
|||||||
Align(
|
Align(
|
||||||
alignment: Alignment(
|
alignment: Alignment(
|
||||||
user!.id == message.user!.id
|
user!.id == message.user!.id
|
||||||
? (divFactor > 1.0
|
? (divFactor >= 1.0
|
||||||
? 0.0
|
? -0.2
|
||||||
: (1.0 - divFactor))
|
: (1.2 - divFactor))
|
||||||
: (divFactor > 1.0
|
: (divFactor >= 1.0
|
||||||
? 0.0
|
? 0.2
|
||||||
: -(1.0 - divFactor)),
|
: -(1.2 - divFactor)),
|
||||||
0),
|
0),
|
||||||
child: ReactionPicker(
|
child: ReactionPicker(
|
||||||
message: message,
|
message: message,
|
||||||
|
|||||||
@@ -602,7 +602,8 @@ class _MessageWidgetState extends State<MessageWidget>
|
|||||||
),
|
),
|
||||||
if (widget.showReactionPickerIndicator)
|
if (widget.showReactionPickerIndicator)
|
||||||
Positioned(
|
Positioned(
|
||||||
right: 4,
|
right: widget.reverse ? null : 4,
|
||||||
|
left: widget.reverse ? 4 : null,
|
||||||
top: -8,
|
top: -8,
|
||||||
child: CustomPaint(
|
child: CustomPaint(
|
||||||
painter: ReactionBubblePainter(
|
painter: ReactionBubblePainter(
|
||||||
|
|||||||
Reference in New Issue
Block a user