MoreMainAxisAlignment enum

Inheritance
Available extensions

Values

start → const MoreMainAxisAlignment

Place the children as close to the start of the main axis as possible.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
end → const MoreMainAxisAlignment

Place the children as close to the end of the main axis as possible.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
center → const MoreMainAxisAlignment

Place the children as close to the middle of the main axis as possible.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
spaceBetween → const MoreMainAxisAlignment

Place the free space evenly between the children.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
spaceAround → const MoreMainAxisAlignment

Place the free space evenly between the children as well as half of that space before and after the first and last child.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
spaceEvenly → const MoreMainAxisAlignment

Place the free space evenly between the children as well as before and after the first and last child.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
spaceBeside → const MoreMainAxisAlignment

Place the free space evenly between the children as well as twice that space before and after the first and last child.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.normal)
spaceBetweenStep → const MoreMainAxisAlignment

Place the space between the children according to the Arithmetic sequence 1,2,3... .

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.step)
spaceBetweenStepBack → const MoreMainAxisAlignment

same as spaceBetweenStep but backward.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.step)
spaceAroundStep → const MoreMainAxisAlignment

Place the space around the children according to the Arithmetic sequence 1,2,3... .

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.step)
spaceAroundStepBack → const MoreMainAxisAlignment

same as spaceAroundStep but backward.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.step)
spaceBetweenFib → const MoreMainAxisAlignment

Place the space between the children according to the Fibonacci sequence.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.fib)
spaceBetweenFibBack → const MoreMainAxisAlignment

same as spaceBetweenFib but backward.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.fib)
spaceAroundFib → const MoreMainAxisAlignment

Place the space around the children according to the Fibonacci sequence.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.fib)
spaceAroundFibBack → const MoreMainAxisAlignment

same as spaceAroundFib but backward.

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.fib)
custom → const MoreMainAxisAlignment

place children by using MoreRenderFlex.customList

const MoreMainAxisAlignment(mode: MainAxisAlignmentMode.custom)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
mode MainAxisAlignmentMode
final
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<MoreMainAxisAlignment>
A constant List of the values in this enum, in order of their declaration.