StacFlexFit enum
Flex fit options for flexible widgets.
Determines how a flexible child should fit within the available space along the main axis of a flex layout.
Values
- tight → const StacFlexFit
-
The child is forced to fill the available space.
The child will be exactly the size of the available space, regardless of its intrinsic dimensions.
- loose → const StacFlexFit
-
The child can be at most as large as the available space.
The child will use its intrinsic dimensions up to the maximum available space, but won't be forced to fill it.
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<
StacFlexFit> - A constant List of the values in this enum, in order of their declaration.