verticalAxisDirection property

AxisDirection verticalAxisDirection

The direction in which the verticalOffset increases.

For example, if the axis direction is AxisDirection.down, a scroll offset of zero is at the top the viewport and increases towards the bottom of the viewport.

Implementation

AxisDirection get verticalAxisDirection => _verticalAxisDirection;
void verticalAxisDirection=(AxisDirection value)

Implementation

set verticalAxisDirection(AxisDirection value) {
  if (_verticalAxisDirection == value) {
    return;
  }
  _verticalAxisDirection = value;
  markNeedsLayout();
}