Hello, everyone! :wave: Do Jetpack Navigation Com...
# compose
e
Hello, everyone! 👋 Do Jetpack Navigation Compose have support for Dynamic Feature Modules? At the moment I have a Navigation Graph similar to:
Copy code
NavHost(navController = navController, startDestination = startDestination) {

    composable(Destinations.Home) {
        Home()
    }

    composable(Destination.TaskDetail) { 
        TaskDetailSection()
    }

    composable(Destination.About) {
        About()
    }
}
But I don’t see how I can make my graph call a compose from a DFM ou how could the DFM register on this graph. Thanks a lot in advance! ❤️
i
Not yet, feel free to star the existing feature request: https://issuetracker.google.com/issues/183677219
e
Thanks, Ian! But is there a way to do it manually at the moment with this current format? 🙂
i
I don't think the DFM + Compose story has really been fleshed out well enough to know what that would even look like, with or without Navigation in the mix
e
Thanks again, Ian!