Search code examples
androidkotlinandroid-jetpack-compose

Navigate from Jetpack Compose to Fragment and from Fragment to Jetpack Compose Screen


How can I go from Jetpack compose screen to fragment and from fragment to jetpack compose screen? I use the jetpack compose navigation? any help?


Solution

  • If you have a hybrid app with both compose and view system fragments then the recommendation is to host all your composable screens in fragments and use the fragment navigation. When you are ready to go all in with compose you can then switch to compose navigation.

    See this for reference.