Skip to content

Commit

Permalink
revert alpha color for send anim
Browse files Browse the repository at this point in the history
  • Loading branch information
zlshames committed Sep 23, 2024
1 parent a9c8331 commit 717f219
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class _SendAnimationState
minWidth: messageBoxSize * exp,
minHeight: 40,
),
color: !message!.isBigEmoji ? context.theme.colorScheme.primary.withAlpha(((1 - value) * 255).toInt()) : null,
color: !message!.isBigEmoji ? context.theme.colorScheme.primary.darkenAmount(0.2) : null,
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 15).add(EdgeInsets.only(
left: message!.isFromMe! || message!.isBigEmoji ? 0 : 10, right: message!.isFromMe! && !message!.isBigEmoji ? 10 : 0)),
child: Align(
Expand Down

0 comments on commit 717f219

Please sign in to comment.