performLayout method

  1. @override
void performLayout()
override

Do the work of computing the layout for this render object.

Do not call this function directly: call layout instead. This function is called by layout when there is actually work to be done by this render object during layout. The layout constraints provided by your parent are available via the constraints getter.

If sizedByParent is true, then this function should not actually change the dimensions of this render object. Instead, that work should be done by performResize. If sizedByParent is false, then this function should both change the dimensions of this render object and instruct its children to layout.

In implementing this function, you must call layout on each of your children, passing true for parentUsesSize if your layout information is dependent on your child's layout information. Passing true for parentUsesSize ensures that this render object will undergo layout if the child undergoes layout. Otherwise, the child can change its layout information without informing this render object.

Implementation

@override
void performLayout() {
  assert(_debugHasNecessaryDirections);
  final BoxConstraints constraints = this.constraints;
  assert(() {
    final FlutterError? constraintsError = _debugCheckConstraints(
      constraints: constraints,
      reportParentConstraints: true,
    );
    if (constraintsError != null) {
      throw constraintsError;
    }
    return true;
  }());

  final _LayoutSizes sizes = _computeSizes(
    layoutChild: ChildLayoutHelper.layoutChild,
    constraints: constraints,
  );

  final double allocatedSize = sizes.allocatedSize;
  double actualSize = sizes.mainSize;
  double crossSize = sizes.crossSize;
  double maxBaselineDistance = 0.0;
  if (crossAxisAlignment == CrossAxisAlignment.baseline) {
    RenderBox? child = firstChild;
    double maxSizeAboveBaseline = 0;
    double maxSizeBelowBaseline = 0;
    while (child != null) {
      assert(() {
        if (textBaseline == null) {
          throw FlutterError('To use CrossAxisAlignment.baseline, you must also specify which baseline to use using the "textBaseline" argument.');
        }
        return true;
      }());
      final double? distance = child.getDistanceToBaseline(textBaseline!, onlyReal: true);
      if (distance != null) {
        maxBaselineDistance = math.max(maxBaselineDistance, distance);
        maxSizeAboveBaseline = math.max(
          distance,
          maxSizeAboveBaseline,
        );
        maxSizeBelowBaseline = math.max(
          child.size.height - distance,
          maxSizeBelowBaseline,
        );
        crossSize = math.max(maxSizeAboveBaseline + maxSizeBelowBaseline, crossSize);
      }
      final FlexParentData childParentData = child.parentData! as FlexParentData;
      child = childParentData.nextSibling;
    }
  }

  // Align items along the main axis.
  switch (_direction) {
    case Axis.horizontal:
      size = constraints.constrain(Size(actualSize, crossSize));
      actualSize = size.width;
      crossSize = size.height;
    case Axis.vertical:
      size = constraints.constrain(Size(crossSize, actualSize));
      actualSize = size.height;
      crossSize = size.width;
  }
  final double actualSizeDelta = actualSize - allocatedSize;
  _overflow = math.max(0.0, -actualSizeDelta);
  final double remainingSpace = math.max(0.0, actualSizeDelta);
  late final double leadingSpace;
  late final double betweenSpace;
  // flipMainAxis is used to decide whether to lay out
  // left-to-right/top-to-bottom (false), or right-to-left/bottom-to-top
  // (true). The _startIsTopLeft will return null if there's only one child
  // and the relevant direction is null, in which case we arbitrarily decide
  // to flip, but that doesn't have any detectable effect.
  final bool flipMainAxis = !(_startIsTopLeft(direction, textDirection, verticalDirection) ?? true);
  switch (_mainAxisAlignment) {
    case MainAxisAlignment.start:
      leadingSpace = 0.0;
      betweenSpace = 0.0;
    case MainAxisAlignment.end:
      leadingSpace = remainingSpace;
      betweenSpace = 0.0;
    case MainAxisAlignment.center:
      leadingSpace = remainingSpace / 2.0;
      betweenSpace = 0.0;
    case MainAxisAlignment.spaceBetween:
      leadingSpace = 0.0;
      betweenSpace = childCount > 1 ? remainingSpace / (childCount - 1) : 0.0;
    case MainAxisAlignment.spaceAround:
      betweenSpace = childCount > 0 ? remainingSpace / childCount : 0.0;
      leadingSpace = betweenSpace / 2.0;
    case MainAxisAlignment.spaceEvenly:
      betweenSpace = childCount > 0 ? remainingSpace / (childCount + 1) : 0.0;
      leadingSpace = betweenSpace;
  }

  // Position elements
  double childMainPosition = flipMainAxis ? actualSize - leadingSpace : leadingSpace;
  RenderBox? child = firstChild;
  while (child != null) {
    final FlexParentData childParentData = child.parentData! as FlexParentData;
    final double childCrossPosition;
    switch (_crossAxisAlignment) {
      case CrossAxisAlignment.start:
      case CrossAxisAlignment.end:
        childCrossPosition = _startIsTopLeft(flipAxis(direction), textDirection, verticalDirection)
                             == (_crossAxisAlignment == CrossAxisAlignment.start)
                           ? 0.0
                           : crossSize - _getCrossSize(child.size);
      case CrossAxisAlignment.center:
        childCrossPosition = crossSize / 2.0 - _getCrossSize(child.size) / 2.0;
      case CrossAxisAlignment.stretch:
        childCrossPosition = 0.0;
      case CrossAxisAlignment.baseline:
        if (_direction == Axis.horizontal) {
          assert(textBaseline != null);
          final double? distance = child.getDistanceToBaseline(textBaseline!, onlyReal: true);
          if (distance != null) {
            childCrossPosition = maxBaselineDistance - distance;
          } else {
            childCrossPosition = 0.0;
          }
        } else {
          childCrossPosition = 0.0;
        }
    }
    if (flipMainAxis) {
      childMainPosition -= _getMainSize(child.size);
    }
    switch (_direction) {
      case Axis.horizontal:
        childParentData.offset = Offset(childMainPosition, childCrossPosition);
      case Axis.vertical:
        childParentData.offset = Offset(childCrossPosition, childMainPosition);
    }
    if (flipMainAxis) {
      childMainPosition -= betweenSpace;
    } else {
      childMainPosition += _getMainSize(child.size) + betweenSpace;
    }
    child = childParentData.nextSibling;
  }
}