Passing argument(s) to a nested Navigation architecture component graph
问题 How does one pass argument(s) to a nested Navigation architecture component graph? Let's say I construct my navigation graph to navigate from FragmentA --> Nested , where Nested contains FragmentB --> FragmentC ... If this was a pure FragmentA --> FragmentB... graph, I would just set up the navigation with FragmentADirections.actionFragmentAToFragmentB(argument = foo) . But that action takes zero arguments as soon as you turn B --> C into Nested ... So what am I supposed to do? 回答1: Global