horizontalAxisDirection property
The direction in which the horizontalOffset increases.
For example, if the axis direction is AxisDirection.right, a scroll offset of zero is at the left of the viewport and increases towards the right of the viewport.
Implementation
AxisDirection get horizontalAxisDirection => _horizontalAxisDirection;
Implementation
set horizontalAxisDirection(AxisDirection value) {
if (_horizontalAxisDirection == value) {
return;
}
_horizontalAxisDirection = value;
markNeedsLayout();
}