PageManager class

Constructors

PageManager()

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

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fadeIn<T extends Widget>(T pageBuilder(), {Duration duration = _defaultDuration, Curve curve = _defaultCurve}) → void
Fade In
off<T extends Widget>(T pageBuilder(), {Transition transition = Transition.fadeIn}) → void
Replace current page
offAll<T extends Widget>(T pageBuilder(), {Transition transition = Transition.fadeIn}) → void
Clear stack and go to page
slideLeft<T extends Widget>(T pageBuilder(), {Duration duration = _defaultDuration, Curve curve = _defaultCurve}) → void
Slide from Left (back-like)
slideRight<T extends Widget>(T pageBuilder(), {Duration duration = _defaultDuration, Curve curve = _defaultCurve}) → void
Slide from Right (iOS-style)
slideUp<T extends Widget>(T pageBuilder(), {Duration duration = _defaultDuration, Curve curve = _defaultCurve}) → void
Slide from Bottom (modal / sheet style)
zoomIn<T extends Widget>(T pageBuilder(), {Duration duration = _defaultDuration, Curve curve = _defaultCurve}) → void
Zoom In (no slide)