You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem comes from the idea that ExampleFlow.root.rxDismissed always emits an event on dismiss.
However, it never emits an event when root is embedded in UINavigationContoller.
Instead UINavigationController.rxDismissed emits an event.
The Flow design [proposed above] does not know anything about UINavigationController and I think it should be kept as it.
So my proposal is to update rxDismissed in a such way that it emits an event when parent navigation controller is dismissed.
The text was updated successfully, but these errors were encountered:
Lets say there is a Flow that is can be presented modally as well as pushed to the navigational stack:
And it is possible navigate by pushing:
or by presenting modally:
The problem comes from the idea that
ExampleFlow.root.rxDismissed
always emits an event on dismiss.However, it never emits an event when
root
is embedded inUINavigationContoller
.Instead
UINavigationController.rxDismissed
emits an event.The Flow design [proposed above] does not know anything about
UINavigationController
and I think it should be kept as it.So my proposal is to update
rxDismissed
in a such way that it emits an event when parent navigation controller is dismissed.The text was updated successfully, but these errors were encountered: