qlevar_router icon indicating copy to clipboard operation
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.

Results 27 qlevar_router issues
Sort by recently updated
recently updated
newest added

Hi @SchabanBo I wanted to request for a feature in the package i.e., right now to pass the data between pages we are using params which will exposed on the...

enhancement

Hi @SchabanBo, There is an issue in Nested navigation when using going to a child page from DifferentParents. Below is the route example `final route = QRoute.withChild( path: '/dashboard', name:...

i got error when do QR.navigator.replaceLastName ![Screenshot_2022-09-07_11-24-31](https://user-images.githubusercontent.com/48790378/188788768-9c57f806-626a-4b77-8c58-098e90bf4a43.png) those error if use replaceLastName, when using replaceName its work fine

``` class AppRoutes { List routes = [ QRoute( pageType: const QFadePage( transitionDuration: Duration(milliseconds: 100), reverseTransitionDuration: Duration(milliseconds: 100)), path: routesPath[0], builder: () => HomePageListview(title: pages[0])), // middleware: [DeferredLoader(page1.loadLibrary)]), QRoute( pageType:...

Hi. I love add and remove routes !!!!! I have a problem when I remove a route. This is my stack tree: ![stack1](https://github.com/SchabanBo/qlevar_router/assets/21334010/37c0b054-1a73-4b24-98ff-7bc5c5a04e0e) I add the route "products": QR: Route:...

I'm experiencing some error messages when trying to use both packages together. When refreshing the page in the web browser I receive: ```sh The following assertion was thrown building QRouter(state:...

The idea is to add a new navigator with his own routes and then navigate in it using ` QR.navigatorOf(navigatorName).removeLast();` To clear: - should the URL changed? Sample code ```dart...

enhancement

on app_routes.dart ``` final routes = [ WebRoutes().route, // Add the dashboard routes ]; ``` on web_router.dart ``` class WebRoutes { final route = QRoute.withChild( name: "web", path: '/', initRoute:...

Consider the following scenario: ```dart QRoute( path: '/schedule', name: schedule, builder: () => const ScheduleView(), ), QRoute( path: '/scheduleDetailed', name: scheduleDetailed, builder: () => const ScheduleDetailedView(), ), ``` First time...

Hi There, Thanks for the awesome package. It makes our life much easier. I am currently facing a issue with navigation. My homepage route is at "/" and I have...