short_navigation 0.3.5 short_navigation: ^0.3.5 copied to clipboard
This package built to navigate between screens (routes) without using context (BuildContext).
Simple package helps you to do navigation in short line without using context (BuildCotext)
Features #
You can navigation without context. Show dialog without context. Show bottomSheet without context. Show SnackBar without context and aything else without using any context. And this package will give you context variable to use it whenever and wherever in your code.
Getting started #
In MaterialApp in main.dart you must pass [Go.navigatorKey] to [navigatorKey] property like this:
MaterialApp(
navigatorKey: Go.navigatorKey, //Pass this navigatorKey here
home: home: const HomePage(),
);
and after that you can use this package usefully.
Usage #
Explaining of how to use this package
Global access to context #
///If you need context in any file in your code you can use it
Go.context;
Navigation using route widget #
///Instead of using [Navigator.of(context).push(MaterialPageRoute(builder: (context) => page));]
///This is simple navigation all you have to do
///just pass your [widget] to go
Go.to(HomePage());
///Instead of using [Navigator.of(context).pushReplacement(MaterialPageRoute(builder: (context) => page));]
///This is simple navigation all you have to do
///just pass your [widget] to go and it will
///remove previous route from the tree
Go.toReplace(HomePage());
///Instead of using [Navigator.of(context).pushAndRemoveUntil(MaterialPageRoute(builder: (context) => page));]
///This is simple navigation all you have to do
///just pass your [widget] to go and it will
///remove all routes from the tree
Go.toRemoveAll(HomePage());
///If you want to pop sothing before
///pushing to another widget you could use it,
///just pass your [widget] to go
Go.backAndTo(HomePage());
Navigation using route name #
///Instead of using [Navigator.of(context).pushNamed("/homePage");]
///This is simple navigation all you have to do
///just passing your route [name] to go
Go.toName("/homePage");
///Instead of using [Navigator.of(context).pushReplacementNamed("/homePage");]
///This is simple navigation all you have to do
///just pass your route [name] to go and it will
///remove previous route from the tree
Go.toReplaceName("/homePage");
///Instead of using [Navigator.of(context).pushNamedAndRemoveUntil("/homePage");]
///This is simple navigation all you have to do
///just pass your route [name] to go and it will
///remove all routes from the tree
Go.toNameRemoveAll("/homePage");
///Instead of using [Navigator.of(context).popAndPushNamed("/homePage");]
///If you want to pop sothing before
///pushing to another widget you could use it,
///just pass your route [name] to go
Go.backAndToName("/homePage");
Back to previous page #
///If you need to back to previous page you can use this function,
///however if you need to pop many routes you simply
///you have to pass how many time you want to pop
///using [numOfBacks].
///There is no need to pass [numOfBacks] if you just want to pop one time.
///Instead of using [Navigator.of(context).pop();]
Go.back();
///Instead of using
///If you wand to pop 3 pages [Navigator.of(context)..pop()..pop()..pop();]
Go.back(3); //instate of Go.back(); Go.back(); Go.back();
///You can back as many as you want
///If you wand to pop 5 pages
Go.back(5);
///If you wand to pop 2 pages
Go.back(2);
Show dialog, bottomSheet, snackBar, and materialBanner #
///Instead of using [showDialog(context: context,builder: (context) => MyCustomDialog());]
///If you wnat to [showDialog] without using context
///you have to use this function and the package will pass the context automaticlly.
///You can use all [showDialog] proparties as usuall.
Go.dialog(MyCustomDialog());
///Instead of using [showModalBottomSheet(context: context, builder: (context) => content);]
///If you wnat to [showModalBottomSheet] without using context
///you have to use this function and the package will pass the context automaticlly.
///You can use all [showModalBottomSheet] proparties as usuall.
Go.bottomSheet(MyCustomBottomSheet());
///Instead of using [ScaffoldMessenger.of(context).showSnackBar(snackBar);]
///If you wnat to [showSnackBar] without using context
///you have to use this function and the package will pass the context automaticlly.
///You can use all [showSnackBar] proparties as usuall.
Go.snackBar(MyCustomSnackBar());
///Instead of using [ScaffoldMessenger.of(context).showMaterialBanner(materialBanner);]
///If you wnat to [showMaterialBanner] without using context
///you have to use this function and the package will pass the context automaticlly.
///You can use all [showMaterialBanner] proparties as usuall.
Go.materialBanner(MyCustomMaterialBanner());
Global access to scaffoldMessenger #
///If you need any thing from [ScaffoldMessenger.of(context)]
///you can use it wherevere in your code without need any context.
Go.scaffoldMessenger;
Global access to Theme #
///If you need any thing from [Theme.of(context)]
///you can use it wherevere in your code without need any context.
Go.theme;
Additional information #
I hope this package helped you very well. If you need to contact with me:
[www.linkedin.com/in/mohammad-bahlaq-089882220]
[https://github.com/MohammadBahlaq]
Do not hesitate to contact me if you faced any problem.
Mohammad Bahlaq.