Replies: 1 comment 4 replies
-
since it's just a sub routes, why don't you use |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi guys (:
This is an example of my scenario:
OnboardingController
with it's own single pageOnboardingPage
.OnboardingColorsSubPage
as one step of the onboarding which also has it's own controllerOnboardingColorsController
which is responsible for fetching data be shown in theOnboardingColorsSubPage
.OnboardingShowColorsSubPage
as the second step of the onboarding which only shows data based on the user colors selections. Has it's own controllerOnboardingShowColorsController
I want to save user selections in the main
OnboardingController
and then to fetch some data by those selections inOnboardingShowColorsController
.Can I share
OnboardingController
data among the thirdOnboardingShowColorsController
? is it an anti pattern ?Beta Was this translation helpful? Give feedback.
All reactions