Hi All, Any idea how does the animation works for ...
# compose
d
Hi All, Any idea how does the animation works for NavHostController
Copy code
navHostController.navigate(QuestionnaireScreens.SecondChild.route + "/${item.key}") {
    anim {
        enter = R.anim.slide_in
        exit = R.anim.slide_out
    }
    launchSingleTop = true
}
f
It's not implemented yet, you are using View based animation in Compose code.
d
okay got it.