Alexander Black
04/09/2022, 6:25 PMcomposable(LeafScreen.Account.route,
enterTransition ={
slideIntoContainer(AnimatedContentScope.SlideDirection.Right, tween(5_000))
},
exitTransition = {
slideOutOfContainer(AnimatedContentScope.SlideDirection.Left, tween(5_000))
}
) {....}
composable(LeafScreen.SignIn.route,
enterTransition ={
slideIntoContainer(AnimatedContentScope.SlideDirection.Left, tween(5_000))
},
exitTransition = {
slideOutOfContainer(AnimatedContentScope.SlideDirection.Right, tween(5_000))
}
) {....}
I’m doing this navigation from a BottomSheetScaffold… I wonder if that has something to do with it?
I’m using accompanist-navigation-animation:0.24.3-alpha
i’m also using androidx.navigationnavigation compose2.4.2jossiwolf
04/11/2022, 9:47 AMBottomSheetScaffold
, yes. If you leave out the BottomSheetScaffold
, does it work?Alexander Black
04/11/2022, 3:49 PMAlexander Black
04/11/2022, 4:06 PMjossiwolf
04/12/2022, 11:27 AMBottomSheetScaffold
and see if you can repro? If you can isolate it and file an issue, that'd be very helpful :)Alexander Black
04/12/2022, 6:22 PMAlexander Black
04/12/2022, 6:23 PMjossiwolf
04/13/2022, 10:27 AM