ViewCtrlLifeCycle class abstract
Define ViewCtrl base life cycle.
- Implementers
Constructors
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
-
onCtrlDispose(
) → void - Called before ctrl deleted. onCtrlDispose might be used to dispose resources used by the controller. Like closing events, or streams before the controller is destroyed. Or dispose objects that can potentially create some memory leaks, like TextEditingControllers, AnimationControllers. Might be useful as well to persist some data on disk.
-
onCtrlInitial(
) → void - Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.
-
onCtrlInitialReady(
) → Future< void> - Called 1 frame after onViewCtrlInitial(). It is the perfect place to enter navigation events, like snack bar, dialogs, or a new route, or async request.
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited