afterPadding property

double afterPadding

The padding in the scroll direction on the side furthest from the 0.0 scroll offset.

Only valid after layout has started, since before layout the render object doesn't know what direction it will be laid out in.

Implementation

double get afterPadding {
  assert(resolvedPadding != null);
  switch (applyGrowthDirectionToAxisDirection(constraints.axisDirection, constraints.growthDirection)) {
    case AxisDirection.up:
      return resolvedPadding!.top;
    case AxisDirection.right:
      return resolvedPadding!.right;
    case AxisDirection.down:
      return resolvedPadding!.bottom;
    case AxisDirection.left:
      return resolvedPadding!.left;
  }
}