horizontalAlignment property

String? horizontalAlignment
getter/setter pair

Specifies whether widgets align to the left, right, or center of a column. Possible string values are:

  • "HORIZONTAL_ALIGNMENT_UNSPECIFIED" : Don't use. Unspecified.
  • "START" : Default value. Aligns widgets to the start position of the column. For left-to-right layouts, aligns to the left. For right-to-left layouts, aligns to the right.
  • "CENTER" : Aligns widgets to the center of the column.
  • "END" : Aligns widgets to the end position of the column. For left-to-right layouts, aligns widgets to the right. For right-to-left layouts, aligns widgets to the left.

Implementation

core.String? horizontalAlignment;