CNTransitionHelper class

Static utility methods for manual transition control.

Use these when you need fine-grained control over transition notifications, such as with custom transitions or modal presentations.

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

beginTransition() Future<void>
Call this before starting a navigation transition.
endTransition() Future<void>
Call this after a navigation transition completes.
withTransition<T>(Future<T> operation()) Future<T>
Wraps an async navigation operation with transition notifications.