I am using the go router plugin for my flutter web application, but I didn't find any way to do push replacement in navigation.
not only push replacement, can we do any other type of navigation link
- pushNamedAndRemoveUntil
- popUntil because these navigation options must be needed in kind of any system!
What I tried
- context.go(userStorage.redirectURL!);
- GoRouter.of(context).go(PagesCollection.adminDashboard);
they only pushed the next page, not replacing
Note: I want this functionality in go router