Are Enter and Exit screen transitions with navigat...
# compose
s
Are Enter and Exit screen transitions with navigation supported in beta 07 ?
nope 2
đź‘€ 1
t
I don’t think so. Even tho there is animation api Eg:
Copy code
navController.navigate("home") {
   popUpTo("login") {
      inclusive = true
   }
   anim {
     enter = android.R.animator.fade_in
   }
}
f
Navigation transitions are still being worked on
a
You should star this issue and you'll be notified when commits related to the issue are made.
c