chore: increase background blur when toolbar is open

This commit is contained in:
ggurdin 2025-06-23 14:25:04 -04:00
parent 6f29c84311
commit d88c2a1525
No known key found for this signature in database
GPG key ID: A01CB41737CBB478
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

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