I want one destination in my main app nav graph (w...
# compose
c
I want one destination in my main app nav graph (which uses Fragment Navigation) to be a navigation-compose nav graph. Would the best way to do this be to declare a Fragment destination in the main app nav graph, and put the composable
NavHost
inside a
ComposeView
in that Fragment?
i
That type of setup should work fine, yes
c
Perfect, thanks!