FlexFit enum
How the child is inscribed into the available space.
See also:
Constants
- loose → const FlexFit
-
The child can be at most as large as the available space (but is allowed to be smaller).
The Flexible widget assigns this kind of FlexFit to its child.
const FlexFit(1)
- tight → const FlexFit
-
The child is forced to fill the available space.
The Expanded widget assigns this kind of FlexFit to its child.
const FlexFit(0)
-
values
→ const List<
FlexFit> -
A constant List of the values in this enum, in order of their declaration.
const List<
FlexFit>
Properties
Methods
-
toString(
) → String -
Returns a string representation of this object.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited