ProgressValueMode enum
How a NudgeProgressBar's fill fraction is provided.
Values
- percent → const ProgressValueMode
-
NudgeProgressBar.percent is the fill directly, 0–100.
- range → const ProgressValueMode
-
The fill is computed from NudgeProgressBar.rangeStart, NudgeProgressBar.rangeCurrent and NudgeProgressBar.rangeEnd as
(current - start) / (end - start) * 100, so the CMS author never has to pre-compute a percentage themselves (e.g. "spent 700 of 1000").
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<
ProgressValueMode> - A constant List of the values in this enum, in order of their declaration.