verticalDirection property

  1. @override
VerticalDirection verticalDirection
override

Determines the order to lay children out vertically and how to interpret start and end in the vertical direction.

If the direction is Axis.vertical, this controls which order children are painted in (down or up), the meaning of the mainAxisAlignment property's MainAxisAlignment.start and MainAxisAlignment.end values.

If the direction is Axis.vertical, and either the mainAxisAlignment is either MainAxisAlignment.start or MainAxisAlignment.end, or there's more than one child, then the verticalDirection must not be null.

If the direction is Axis.horizontal, this controls the meaning of the crossAxisAlignment property's CrossAxisAlignment.start and CrossAxisAlignment.end values.

If the direction is Axis.horizontal, and the crossAxisAlignment is either CrossAxisAlignment.start or CrossAxisAlignment.end, then the verticalDirection must not be null.

Implementation

@override
VerticalDirection get verticalDirection => _verticalDirection;
  1. @override
void verticalDirection=(VerticalDirection value)
override

Implementation

@override
set verticalDirection(VerticalDirection value) {
  if (_verticalDirection != value) {
    _verticalDirection = value;
    markNeedsLayout();
  }
}