Use Animations with navigations in WearOS

22 Views Asked by At

I have a swipeDissmissableNavController with a SwipeDismissableNavHost and I want to add in animations when entering a new page. I tried it the following way:

    val navController = rememberSwipeDismissableNavController()
    SwipeDismissableNavHost(
    navController = navController,
    startDestination = "startDestination",
    enterTransition = //enterTransition here
    ){
   // composables here
}

But it does not take any enterTransition parameters ore similar.

Any ideas?

0

There are 0 best solutions below