Farid Mrz
10/26/2021, 2:21 PMCasey Brooks
10/26/2021, 6:26 PMDefine a navigation graph with a NavHost in Compose using Compose destinations. This is possible only if all of the screens in the navigation graph are composables.https://developer.android.com/jetpack/compose/navigation#interoperability So no, it's not possible to navigate from a pure-Compose nav graph to an Activity or Fragment destination. If you need that, then you need to follow the "hybrid" approach, also described in that same documentation second, or else handle the navigation outside of the Navigation Component, where you can pass data through the Intent as normal
Farid Mrz
10/27/2021, 6:53 AMFarid Mrz
10/27/2021, 6:53 AM