From 998ffb00edb8cdc2355758c5f26dd8bf534b4006 Mon Sep 17 00:00:00 2001 From: avashilling <165050625+avashilling@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:57:30 -0400 Subject: [PATCH] chore: collection seed always fades up and out (#3987) Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com> --- .../toolbar/widgets/word_zoom/new_word_overlay.dart | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/lib/pangea/toolbar/widgets/word_zoom/new_word_overlay.dart b/lib/pangea/toolbar/widgets/word_zoom/new_word_overlay.dart index ca7661843..d3b3d24a8 100644 --- a/lib/pangea/toolbar/widgets/word_zoom/new_word_overlay.dart +++ b/lib/pangea/toolbar/widgets/word_zoom/new_word_overlay.dart @@ -105,18 +105,11 @@ class _NewWordOverlayState extends State final fade = 1.0 - (_fadeAnim!.value); final move = _moveAnim!.value; - final seedSize = 75 * scale * fade; - - // Calculate movement to top left if fullscreen, or top right of word card if mobile - final screenSize = MediaQuery.of(context).size; - final moveX = - columnMode ? -move * (screenSize.width / 2 - 50) : move * 130; - - final moveY = - columnMode ? -move * (screenSize.height / 2 - 50) : move * -120; + final seedSize = 75 * scale; + final moveY = -move * 60; return Transform.translate( - offset: Offset(moveX, moveY), + offset: Offset(0, moveY), child: Opacity( opacity: fade, child: Transform.rotate(