JustifyContent enum
Defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
Values
- flexStart → const JustifyContent
-
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like start.
- start → const JustifyContent
-
The items are packed flush to each other toward the start edge of the alignment container in the main axis.
- flexEnd → const JustifyContent
-
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated like end.
- end → const JustifyContent
-
The items are packed flush to each other toward the end edge of the alignment container in the main axis.
- center → const JustifyContent
-
The items are packed flush to each other toward the center of the alignment container along the main axis.
- spaceBetween → const JustifyContent
-
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.
- spaceAround → const JustifyContent
-
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The empty space before the first and after the last item equals half of the space between each pair of adjacent items.
- spaceEvenly → const JustifyContent
-
The items are evenly distributed within the alignment container along the cross axis. The spacing between each pair of adjacent items, the start edge and the first item, and the end edge and the last item, are all exactly the same.
Properties
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<
JustifyContent> - A constant List of the values in this enum, in order of their declaration.