Is there a way to disable the default enter/exit c...
# compose
m
Is there a way to disable the default enter/exit crossfade transition ? I'm using AnimatedNavHost to animate the transition between my Composable however I wanted to have transition only for the subscreen of my app
c
I haven't tried it yet but try changing the global
enterTransition
and
exitTransition
on your
AnimatedNavHost
👍 1
i
Yep, you can set the defaults to
EnterTransition.None
and
ExitTransition.None
if you want jump cuts everywhere
m
Awesome thank you guys 🙂