Closed nflahavan closed 1 year ago
I have the same problem and @nflahavan code fixed it as well. Interested to learn how can I make it work on the original code since I don't want to fork RxFlow.
I agree that the proposed solution from @nflahavan would benefit my case as well!
This issue has not received any recent updates. We encourage you to check if this is still an issue after the latest release and if you find that this is still a problem, please leave a comment below and auto-close will be canceled.
This issue has automatically been closed due to inactivity.
tldr: child flows created as a result of calling
navigate(to:)
get the step passed to the aforementioned function. Is that intended?I've found some behavior that I'm wondering if is intended or not. Given the following:
If I coordinate
AppFlow
with a coordinator like so:And then eventually somewhere else in the app call:
I find that
PostLoginFlow
which was created as a result of the call above is asked to navigate to the stepAppStep.loginComplete
. I did not expect this behavior and I'm wondering if it is intended or not.The code for
navigate(to:)
is the following:I think it might make more sense to refactor to this:
What do you think? P.S. Thanks for a great library!