We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g.
final id = useState(1); return AutoRouter.declarative( routes: (handler) { return [ HomeRoute(id: id.value), ]; }, );
Updating the id above will not trigger a rebuild. The solution to this problem is too use keys.
I've opened a PR here: #2084
The text was updated successfully, but these errors were encountered:
why you can't use other ways to provide value? For example inherited widget.
Sorry, something went wrong.
@Phat0M That's a workaround, but a truly declarative router should react to state changes.
No branches or pull requests
e.g.
Updating the id above will not trigger a rebuild.
The solution to this problem is too use keys.
I've opened a PR here: #2084
The text was updated successfully, but these errors were encountered: