Replies: 4 comments
-
Still stuck on this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also looking for the proper solution |
Beta Was this translation helpful? Give feedback.
0 replies
-
Replace the pageview with StateleWidget and use GetBuilder to init the controller, also dont forget to use tag that always uniq |
Beta Was this translation helpful? Give feedback.
0 replies
-
Second solution using getView and middleware |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am setting up password resets with an authCode. For example:
https://myapp.com/#/auth/authAction?code=validcode
This page current works when opened from outside my app or from another page inside my app. The needed controllers initialize, check the auth code, then display either a valid or invalid page.
However, if a user is already on the
/auth/authAction
page and they change thecode
parameter, the GetxControllers don't reinitialize and the code is never rechecked. The user stays on the current valid/invalid page. But the parametercode
does update as I see Getx putting a debug log in that looks like this:How do I listen for page reloads? I'd like to...
Beta Was this translation helpful? Give feedback.
All reactions