computeChildMainAxisPosition method
- RenderSliver child,
- double parentMainAxisPosition
override
Converts the parentMainAxisPosition
into the child's coordinate system.
The parentMainAxisPosition
is a distance from the top edge (for vertical
viewports) or left edge (for horizontal viewports) of the viewport bounds.
This describes a line, perpendicular to the viewport's main axis, heretofore
known as the target line.
The child's coordinate system's origin in the main axis is at the leading edge of the given child, as given by the child's SliverConstraints.axisDirection and SliverConstraints.growthDirection.
This method returns the distance from the leading edge of the given child to the target line described above.
(The parentMainAxisPosition
is not from the leading edge of the
viewport, it's always the top or left edge.)
Implementation
@override
double computeChildMainAxisPosition(RenderSliver child, double parentMainAxisPosition) {
final Offset paintOffset = (child.parentData! as SliverPhysicalParentData).paintOffset;
return switch (applyGrowthDirectionToAxisDirection(child.constraints.axisDirection, child.constraints.growthDirection)) {
AxisDirection.down => parentMainAxisPosition - paintOffset.dy,
AxisDirection.right => parentMainAxisPosition - paintOffset.dx,
AxisDirection.up => child.geometry!.paintExtent - (parentMainAxisPosition - paintOffset.dy),
AxisDirection.left => child.geometry!.paintExtent - (parentMainAxisPosition - paintOffset.dx),
};
}