performLayout method
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() {
double scrollOffset = 0;
double layoutOffset = 0;
double maxPaintExtent = 0;
double paintOffset = constraints.overlap;
RenderSliver? child = firstChild;
while (child != null) {
final double beforeOffsetPaintExtent = calculatePaintOffset(
constraints,
from: 0.0,
to: scrollOffset,
);
child.layout(
constraints.copyWith(
scrollOffset: math.max(0.0, constraints.scrollOffset - scrollOffset),
cacheOrigin: math.min(0.0, constraints.cacheOrigin + scrollOffset),
overlap: math.max(0.0, _fixPrecisionError(paintOffset - beforeOffsetPaintExtent)),
remainingPaintExtent: _fixPrecisionError(
constraints.remainingPaintExtent - beforeOffsetPaintExtent,
),
remainingCacheExtent: _fixPrecisionError(
constraints.remainingCacheExtent -
calculateCacheOffset(constraints, from: 0.0, to: scrollOffset),
),
precedingScrollExtent: scrollOffset + constraints.precedingScrollExtent,
),
parentUsesSize: true,
);
final SliverGeometry childLayoutGeometry = child.geometry!;
final double childPaintOffset = layoutOffset + childLayoutGeometry.paintOrigin;
final SliverPhysicalParentData childParentData =
child.parentData! as SliverPhysicalParentData;
childParentData.paintOffset = switch (constraints.axis) {
Axis.vertical => Offset(0.0, childPaintOffset),
Axis.horizontal => Offset(childPaintOffset, 0.0),
};
scrollOffset += childLayoutGeometry.scrollExtent;
layoutOffset += childLayoutGeometry.layoutExtent;
maxPaintExtent += childLayoutGeometry.maxPaintExtent;
paintOffset = math.max(childPaintOffset + childLayoutGeometry.paintExtent, paintOffset);
child = childAfter(child);
assert(() {
if (child != null && maxPaintExtent.isInfinite) {
throw FlutterError(
'Unreachable sliver found, you may have a sliver following '
'a sliver with an infinite extent. ',
);
}
return true;
}());
}
final double remainingExtent = math.max(0, scrollOffset - constraints.scrollOffset);
// If the children's paint extent exceeds the remaining scroll extent of the `RenderSliverMainAxisGroup`,
// they need to be corrected.
if (paintOffset > remainingExtent) {
final double paintCorrection = paintOffset - remainingExtent;
paintOffset = remainingExtent;
child = firstChild;
while (child != null) {
final SliverGeometry childLayoutGeometry = child.geometry!;
if (childLayoutGeometry.paintExtent > 0) {
final SliverPhysicalParentData childParentData =
child.parentData! as SliverPhysicalParentData;
childParentData.paintOffset = switch (constraints.axis) {
Axis.vertical => Offset(0.0, childParentData.paintOffset.dy - paintCorrection),
Axis.horizontal => Offset(childParentData.paintOffset.dx - paintCorrection, 0.0),
};
}
child = childAfter(child);
}
}
final double cacheExtent = calculateCacheOffset(
constraints,
from: math.min(constraints.scrollOffset, 0),
to: scrollOffset,
);
final double paintExtent = clampDouble(paintOffset, 0, constraints.remainingPaintExtent);
geometry = SliverGeometry(
scrollExtent: scrollOffset,
paintExtent: paintExtent,
cacheExtent: cacheExtent,
maxPaintExtent: maxPaintExtent,
hasVisualOverflow:
scrollOffset > constraints.remainingPaintExtent || constraints.scrollOffset > 0.0,
);
// Update the children's paintOffset based on the direction again, which
// must be done after obtaining the `paintExtent`.
child = firstChild;
while (child != null) {
final SliverPhysicalParentData childParentData =
child.parentData! as SliverPhysicalParentData;
childParentData.paintOffset = switch (constraints.axisDirection) {
AxisDirection.up => Offset(
0.0,
paintExtent - childParentData.paintOffset.dy - child.geometry!.paintExtent,
),
AxisDirection.left => Offset(
paintExtent - childParentData.paintOffset.dx - child.geometry!.paintExtent,
0.0,
),
AxisDirection.right || AxisDirection.down => childParentData.paintOffset,
};
child = childAfter(child);
}
}