Tweak exit "stay" transition to eliminate most of fade (#187)

This commit is contained in:
Brian Yencho 2023-10-31 11:13:15 -05:00 committed by Álison Fernandes
parent 967fdc3449
commit cb2c6495c8

View file

@ -281,7 +281,7 @@ object RootTransitionProviders {
val stay: NonNullExitTransitionProvider = {
fadeOut(
animationSpec = tween(DEFAULT_TRANSITION_TIME_MS),
targetAlpha = 0f,
targetAlpha = 0.99f,
)
}
}