The owner aggregate view that manages the transition.
The progress of the transition, ranging from 0.0 to 1.0.
The source view from which the transition starts.
The current state of the transition.
The target view to which the transition ends.
Executes the transition between the source and target views.
The owner aggregate view.
Optional
source: IHosannaView<ViewState>The source view.
Optional
target: IHosannaView<ViewState>The target view.
Whether the transition should be animated. Defaults to true.
Whether to remove the source view when the transition is complete. Defaults to true.
Represents a simple transition for an aggregate view. This transition immediately completes without any animation.
Remarks
This class extends the
AggregateViewTransition
and overrides thebegin
andtransitionWithoutAnimation
methods to provide a simple transition that completes instantly.Example