how to integrate navigation with M3 navbar using t...
# compose-android
h
how to integrate navigation with M3 navbar using the new Typed route feature.
Copy code
val navController = rememberNavController()
Scaffold(
  bottomBar = {
    BottomNavigation {
      val navBackStackEntry by navController.currentBackStackEntryAsState()
      val currentDestination = navBackStackEntry?.destination
      items.forEach { screen ->
        BottomNavigationItem(
          ...
          ..,
          selected = currentDestination?.hierarchy?.any { it.route == screen.route } == true,
          ...
        )
      }
    }
  }
)
h
Thank you