When starting a new compose multiplatform project ...
# multiplatform
v
When starting a new compose multiplatform project (Android & Desktop, maybe iOS), what's the recommendation for handling navigation? I've tried to use
Copy code
org.jetbrains.androidx.navigation:navigation-compose:2.9.0-beta05
without any luck. Gemini agent went with Voyager, but the code it wrote wouldn't even compile. And I am reading that there's a new alpha Navigation 3 from Google?
c
You‘d better move this question to #CJLTWPH7S to reach the right audience.
j
NavHost
is the solution that I'd recommend. It is the recommended navigation API for Android (until Navigation3) and it's available for CMP.