Skip to content

Instantly share code, notes, and snippets.

@BrianMwas
Last active August 3, 2021 13:42
Show Gist options
  • Save BrianMwas/e22911fb42acb0d175384c5a8f2506e8 to your computer and use it in GitHub Desktop.
Save BrianMwas/e22911fb42acb0d175384c5a8f2506e8 to your computer and use it in GitHub Desktop.
// Going to a page
Get.toNamed(AppLinks.DASHBOARD);
// Move back one page only
Get.offNamed(AppLinks.LOGIN);
// Going back all route/pages until LOGIN page you can even pass a predicate/ condition to pop until that condition passes
Get.offAllNamed(AppLinks.LOGIN);
// Pop the current route and to the defined route.
Get.offAllAndToNamed(AppLinks.ORDERS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment