Updated on 2026-08-14

This commit is contained in:
Tangem 2026-08-04 15:07:46 +05:00
commit 849b1a0724

View file

@ -29,6 +29,13 @@ object RoutingTransitionAnimationFactory {
animationSpec = tween(400), animationSpec = tween(400),
), ),
) )
is AppRoute.CurrencyDetails,
-> slideAndFade(
// Token details owns a hazeEffect top bar. Alpha-animating it while it is covered by
// or revealed from another screen blinks black over the blurred region — the same
// artifact WalletTopBar hit above. Keep the fade only for the FRONT directions.
fadeDirections = setOf(Direction.ENTER_FRONT, Direction.EXIT_FRONT),
)
else -> slideAndFade() else -> slideAndFade()
} }
} }