How to apply NavHost custom transition animation in jetpack compose android app
I'm implementing the new model of the Android NavHost navigation system. However, I can not resolve how to apply the custom transition animation,
Here's my implemented navhost,
AndroidNavigationTheme {
val navController = rememberNavController()
NavHost(
navController = navController,
startDestination = HomeScreen,
){
composable{
HomeScreen(
onClickGoAboutScreen = {
navController.navigate(AboutScreen)...