crossAxisAlignment property
WrapCrossAlignment
get
crossAxisAlignment
Placement of children within each run's cross extent.
Implementation
WrapCrossAlignment get crossAxisAlignment => _crossAxisAlignment;
set
crossAxisAlignment
(WrapCrossAlignment value)
Updates child cross-axis placement.
Implementation
set crossAxisAlignment(WrapCrossAlignment value) {
if (_crossAxisAlignment == value) return;
_crossAxisAlignment = value;
markNeedsLayout();
}