Updated on 2026-08-14

This commit is contained in:
Tangem 2026-08-03 11:56:13 +05:00
parent 815f6c2b25
commit 5e72f730fd

View file

@ -29,6 +29,13 @@ object RoutingTransitionAnimationFactory {
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()
}
}