<Navigate from compose to fragment when compose is...
# stackoverflow
r
Navigate from compose to fragment when compose is hosted by fragment I am moving my app to jetpack compose from view. The default navigation is using the nav_graph. The app has been built following the principle of one activity, multiple fragments. In order to move the app slowly, I am trying to just load the compose in the fragment. so the fragment can be seen as a nest for compose. I am doing it for to keep the navigation in place prior to moving the navigation. I am trying to make compose to navigate to the fragment using the nav_graph. Currently, my...