Commit 54bbb6fb authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

SliverFill: s/size/extent/ as requested by abarth a while ago... (#9279)

parent 6d5488ad
...@@ -116,17 +116,17 @@ class RenderSliverFillRemaining extends RenderSliverSingleBoxAdapter { ...@@ -116,17 +116,17 @@ class RenderSliverFillRemaining extends RenderSliverSingleBoxAdapter {
@override @override
void performLayout() { void performLayout() {
final double size = constraints.remainingPaintExtent - math.min(constraints.overlap, 0.0); final double extent = constraints.remainingPaintExtent - math.min(constraints.overlap, 0.0);
if (child != null) if (child != null)
child.layout(constraints.asBoxConstraints(minExtent: size, maxExtent: size), parentUsesSize: true); child.layout(constraints.asBoxConstraints(minExtent: extent, maxExtent: extent), parentUsesSize: true);
final double paintedChildSize = calculatePaintOffset(constraints, from: 0.0, to: size); final double paintedChildSize = calculatePaintOffset(constraints, from: 0.0, to: extent);
assert(paintedChildSize.isFinite); assert(paintedChildSize.isFinite);
assert(paintedChildSize >= 0.0); assert(paintedChildSize >= 0.0);
geometry = new SliverGeometry( geometry = new SliverGeometry(
scrollExtent: constraints.viewportMainAxisExtent, scrollExtent: constraints.viewportMainAxisExtent,
paintExtent: paintedChildSize, paintExtent: paintedChildSize,
maxPaintExtent: paintedChildSize, maxPaintExtent: paintedChildSize,
hasVisualOverflow: size > constraints.remainingPaintExtent || constraints.scrollOffset > 0.0, hasVisualOverflow: extent > constraints.remainingPaintExtent || constraints.scrollOffset > 0.0,
); );
if (child != null) if (child != null)
setChildParentData(child, constraints, geometry); setChildParentData(child, constraints, geometry);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment