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.
Hello guys, I was wondering If it would be possible to get children's route act like **TABS** into a TabPage? **Example of the use case - MobileRoutes has three tabs**...
qlevar_router is so great router i ever use, i just confused how to doing something before pop, for example 1. i want clear all getx controller before pop 2. i...
Code to reproduce ```dart import 'dart:math'; import 'package:flutter/material.dart'; import 'package:qlevar_router/qlevar_router.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { static List tabs = [ "Home Page", "Store Page", "Settings...
Really appreciate this great package and the excellent example 💯 👍 😄 I would like to know how this package can work in this scenario: 1. run the example in...
Hi @SchabanBo, there is an issue with the replaceLastName or replaceAllWithName while using with QRoute.withChild. Let suppose say we have some onBoardingPages & some dashboardPages. Now as user has signed...
Hi @SchabanBo I am using your deferred loading middleware concept to lazy load routes in web version. But the issue is when ever I deploy some changes & host the...
Hi @SchabanBo this issue is same as #75, as it is closed by you opening a new issue. This happens with GetX same as mentioned in the tagged issue. I...
I try to access a routes from url i found that api calls two time on that route but i call api in init state then i don't know why...
Hi @SchabanBo, I passed an custom NavigationObserver class which extends RouteObserver into the observers array exposed by QRouterDelegate & I override the methods didPush, didReplace, didPop methods & added a...