Compose Navigation Overview Implement type-safe navigation in Jetpack Compose applications using the Navigation Compose library. This skill covers NavHost setup, argument passing, deep links, nested graphs, adaptive navigation, and testing. Setup Add the Navigation Compose dependency: --- Core Concepts 1. Define Routes (Type-Safe) Use data classes/objects for type-safe routes: 2. Create NavController 3. Create NavHost --- Navigation Patterns Basic Navigation Navigate with Options Bottom Navigation Pattern --- Argument Handling Retrieve Arguments in Composable Retrieve Arguments in ViewModel C…