Manage you project Routes. Create nested routes. Simply navigation without context to your pages. Change only one sub widget in your page when navigating to new route.
MIT License
87
stars
22
forks
source link
Full path matching is attempted when the child route cannot be matched #154
Here's an example:
When I normally access /auth/login using QR.to('/auth/login'), the result is as expected.
However, when I access QR.to('/auth/home'), it fails to match the path because home cannot be found within the children of /auth.
I expect the result to match /auth/home, which is consistent with the result under go_route.
Here's an example: When I normally access /auth/login using QR.to('/auth/login'), the result is as expected. However, when I access QR.to('/auth/home'), it fails to match the path because home cannot be found within the children of /auth. I expect the result to match /auth/home, which is consistent with the result under go_route.