runAlignment property

WrapAlignment get runAlignment

Distribution of runs across the cross axis.

Implementation

WrapAlignment get runAlignment => _runAlignment;
set runAlignment (WrapAlignment value)

Updates run distribution.

Implementation

set runAlignment(WrapAlignment value) {
  if (_runAlignment == value) return;
  _runAlignment = value;
  markNeedsLayout();
}