RowAlignment enum

The RowAlignment can be set when a CellPosition.nextRow is used in a ResponsiveLayoutCell. It can be one of the following values:

  • left: Align all cells on the left side of the row
  • right: Align all cells on the right side of the row
  • center: Try to align all cells in the middle of the row by increasing or decreasing the ColumnSpan of one of the cells if needed.
  • justify: Try to fill the row from left to right by increasing or decreasing the ColumnSpans of the cells if needed.
Inheritance

Constructors

RowAlignment()
const

Values

left → const RowAlignment

Align all cells on the left side of the row

Align all cells on the right side of the row

center → const RowAlignment

Try to align all cells in the middle of the row by Increasing or decreasing the ColumnSpan of one of the cells if needed.

justify → const RowAlignment

Try to fill the row from left to right by increasing or decreasing the ColumnSpans of the cells if needed.

Properties

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