Anyone know the equivalent of nested navigation ar...
# compose
a
Anyone know the equivalent of nested navigation arguments in Jetpack XML Navigation on compose-navigation?
Copy code
<navigation>
  <navigation>
    <argument... />
    <fragment />
  </navigation>
</navigation>
I know that arguments inside
<fragment>
can be translated as
Copy code
composable(
  route = "screenA",
  arguments = listOf(navArgument(...)),
) { ... }
But I’m not sure how we can pass arguments to a nested navigation itself which encapsulates its start destination.
🧵 1
i
See the previous conversation on this (with a link to the feature request): https://kotlinlang.slack.com/archives/CJLTWPH7S/p1615578075075200?thread_ts=1615573138.066500&amp;cid=CJLTWPH7S