Navigation Component (en del av Jetpack) är det rekommenderade sättet att hantera in-app-navigering — att röra sig mellan destinationer (fragment eller composables) inom en single-Activity-arkitektur. Det centraliserar navigeringslogiken och hanterar back stack, argument och deep links.
Vad det tillhandahåller
The Navigation Component manages navigation within the app:
→ a NAV GRAPH defines destinations (screens) and the actions (paths) between them
(visually/declaratively — one place to see all navigation)
→ a NavController performs navigation; handles the BACK STACK automatically
→ type-safe ARGUMENT passing (Safe Args); deep linking support
→ Designed for SINGLE-ACTIVITY architecture (one activity, many fragment/composable destinations)
