Merge pull request #3197 from pangeachat/3185-when-a-message-is-selected-for-more-interaction-blur-the-background-more

chore: increase background blur when toolbar is open
pull/2245/head
ggurdin 5 months ago committed by GitHub
commit c389e683a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -246,7 +246,7 @@ class TransparentBackdropState extends State<TransparentBackdrop>
curve: FluffyThemes.animationCurve,
),
);
_blurTween = Tween<double>(begin: 0.0, end: 2.5).animate(
_blurTween = Tween<double>(begin: 0.0, end: 3.0).animate(
CurvedAnimation(
parent: _controller,
curve: FluffyThemes.animationCurve,

@ -550,7 +550,7 @@ class MessageSelectionPositionerState extends State<MessageSelectionPositioner>
return 0.8;
case ReadingAssistanceMode.selectMode:
case null:
return 0.4;
return 0.6;
}
}

Loading…
Cancel
Save