Classes
Transition | An object representing an animated transition. |
Stack | A component which displays its children as a stack of widgets, |
Bases: atom.atom.Atom
An object representing an animated transition.
Once a transition is created, it should be considered read-only.
The type of transition effect to use.
The direction of the transition effect. Some transition types will ignore the direction if it doesn’t apply to the effect.
The duration of the transition, in milliseconds.
Bases: enaml.widgets.constraints_widget.ConstraintsWidget
A component which displays its children as a stack of widgets, only one of which is visible at a time.
The index of the visible widget in the stack. The widget itself does not provide a means to changing this index. That control must be supplied externally. If the given index falls outside of the range of stack items, no widget will be visible.
The item transition to use when changing between stack items.
The size hint mode for the stack. The default is ‘union’ and means that the size hint of the stack is the union of all the stack item size hints. ‘current’ means the size hint of the stack will be the size hint of the current stack item.
A Stack expands freely in height and width by default
A reference to the ProxyStack widget.