Vitaliy Zarubin
07/28/2021, 10:50 AMval navigateToRegOne: () -> Unit = {
navController.navigate(GuestNavScreen.RegOne.route) {
anim {
enter = R.anim.slide_in
exit = R.anim.fade_out
popEnter = R.anim.fade_in
popExit = R.anim.slide_out
}
}
}
Why the animation might not work? The page is displayed instantly.Tin Tran
07/28/2021, 10:55 AManim
doesn’t work with navigation compose. Compose navigation animation is being developed