Actually, I just looked at how the my current multipaltform MainComposable is structured, and it’s very similar:
Copy code
fun MainComposable(model: DKMPViewModel) {
val appState by model.stateFlow.collectAsState()
val dkmpNav = appState.getNavigation(model)
dkmpNav.Router()
}