what is the intended way to tackle subcontainer navigation with Flow
on Android.
Let's say I have a couple of Screens
where one works like a container screen itself - there I want to do some subnavigation (changing part of this screen).
I guess the Screen should serve as a temporal Flow.Dispatcher
and proxy all Flow
commands. How to do that? By calling Flow.setDispatcher
I effectively replace the parent dispatcher, which is not intended.
I guess creating a new Flow
instance is not welcomed either, that should be an app wide singleton..?