PersistentNavBarNavigator class
Properties
-
hashCode
→ int
-
The hash code for this object.
no setterinherited
-
runtimeType
→ Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
toString()
→ String
-
A string representation of this object.
inherited
Static Methods
-
pop(BuildContext context)
→ void
-
-
popUntilFirstScreenOnSelectedTabScreen(BuildContext context, {String? routeName})
→ void
-
If you haven't defined a routeName for the first screen of the selected tab then don't use the optional property
routeName
. Otherwise it may not work as intended
-
pushDynamicScreen<T>(BuildContext context, {required Route<T> screen, bool? withNavBar})
→ Future<T?>
-
Once you push a screen with
withNavBar
set to false
, Navigation bar cannot appear in screens pushed from here forward unless you define a new PersistentTabView
on those screens.
-
pushNewScreen<T>(BuildContext context, {required Widget screen, bool? withNavBar, PageTransitionAnimation pageTransitionAnimation = PageTransitionAnimation.cupertino, })
→ Future<T?>
-
Once you push a screen with
withNavBar
set to false
, Navigation bar cannot appear in screens pushed from here forward unless you define a new PersistentTabView
on those screens.
-
pushNewScreenWithRouteSettings<T>(BuildContext context, {required Widget screen, required RouteSettings settings, bool? withNavBar, PageTransitionAnimation pageTransitionAnimation = PageTransitionAnimation.cupertino, })
→ Future<T?>
-