NibTextStaggerFrom enum
Where the per-unit stagger delay accumulates from, when NibText computes each unit's entrance delay.
Values
- start → const NibTextStaggerFrom
-
Delay increases from the first unit to the last:
index * staggerDelay. - end → const NibTextStaggerFrom
-
Delay increases from the last unit to the first:
(totalUnits - 1 - index) * staggerDelay. - center → const NibTextStaggerFrom
-
Delay increases outward from the middle unit toward both ends.
- random → const NibTextStaggerFrom
-
Delay is a seeded-random value in
[0, totalUnits * staggerDelay), so units animate in over the same overall window but in a shuffled order.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - 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
Constants
-
values
→ const List<
NibTextStaggerFrom> - A constant List of the values in this enum, in order of their declaration.