qlevar_router
qlevar_router copied to clipboard
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.
EXAMPLE: Init path: http://localhost:53724/home/about Current path: http://localhost:53724/home/products/product-67 When I do hot restart the browser refreshes the web page but the path is still: http://localhost:53724/home/products/product-67 I must be reset to: http://localhost:53724/home/about
QR: incoming init path /home/users/userDetails?user_id=62 QR: Finding Match for /home/users/userDetails?user_id=62 under root QR: adding Route: Key: [1](home), Full Path: /home to the navigator with Key: [-1](Root) Observer: Navigating to /home...
For example, when I opened page A, I used another plugin to open a page in the plugin. The page in the plugin did not use the current route, which...
qlevar_router allows to return the result from a page this way: `final result = await QR.to('/page', waitForResult: true);` This works fine until we want to support state restoration on android....
Find a way to handle *CanPop* methods after Deprecated "onPopPage" See: https://github.com/flutter/flutter/pull/137792 https://github.com/flutter/flutter/issues/138614
I have an issue with state restoration and temporarty router. Here are my routes: ``` class AppRoutes { static List bottomSheetRoutes = [ QRoute( name: bottomSheetExamplePageName, path: bottomSheetExamplePagePath, builder: ()...
I cannot figure out how to make replaceLastName work with nested navigation, need some help on that. There is a root navigator and a a nested navigator. I want to...