sliver_grid.dart 27.3 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:math' as math;

xster's avatar
xster committed
7
import 'package:flutter/foundation.dart';
8 9 10 11 12 13 14 15 16 17

import 'box.dart';
import 'object.dart';
import 'sliver.dart';
import 'sliver_multi_box_adaptor.dart';

/// Describes the placement of a child in a [RenderSliverGrid].
///
/// See also:
///
18 19 20
///  * [SliverGridLayout], which represents the geometry of all the tiles in a
///    grid.
///  * [SliverGridLayout.getGeometryForChildIndex], which returns this object
21 22 23
///    to describe the child's placement.
///  * [RenderSliverGrid], which uses this class during its
///    [RenderSliverGrid.performLayout] method.
24
@immutable
25 26 27
class SliverGridGeometry {
  /// Creates an object that describes the placement of a child in a [RenderSliverGrid].
  const SliverGridGeometry({
28 29 30 31
    required this.scrollOffset,
    required this.crossAxisOffset,
    required this.mainAxisExtent,
    required this.crossAxisExtent,
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
  });

  /// The scroll offset of the leading edge of the child relative to the leading
  /// edge of the parent.
  final double scrollOffset;

  /// The offset of the child in the non-scrolling axis.
  ///
  /// If the scroll axis is vertical, this offset is from the left-most edge of
  /// the parent to the left-most edge of the child. If the scroll axis is
  /// horizontal, this offset is from the top-most edge of the parent to the
  /// top-most edge of the child.
  final double crossAxisOffset;

  /// The extent of the child in the scrolling axis.
  ///
  /// If the scroll axis is vertical, this extent is the child's height. If the
  /// scroll axis is horizontal, this extent is the child's width.
  final double mainAxisExtent;

  /// The extent of the child in the non-scrolling axis.
  ///
  /// If the scroll axis is vertical, this extent is the child's width. If the
  /// scroll axis is horizontal, this extent is the child's height.
  final double crossAxisExtent;

Adam Barth's avatar
Adam Barth committed
58 59 60 61
  /// The scroll offset of the trailing edge of the child relative to the
  /// leading edge of the parent.
  double get trailingScrollOffset => scrollOffset + mainAxisExtent;

62 63 64 65 66 67 68 69 70
  /// Returns a tight [BoxConstraints] that forces the child to have the
  /// required size.
  BoxConstraints getBoxConstraints(SliverConstraints constraints) {
    return constraints.asBoxConstraints(
      minExtent: mainAxisExtent,
      maxExtent: mainAxisExtent,
      crossAxisExtent: crossAxisExtent,
    );
  }
Adam Barth's avatar
Adam Barth committed
71 72 73

  @override
  String toString() {
74 75 76 77 78 79 80
    final List<String> properties = <String>[
      'scrollOffset: $scrollOffset',
      'crossAxisOffset: $crossAxisOffset',
      'mainAxisExtent: $mainAxisExtent',
      'crossAxisExtent: $crossAxisExtent',
    ];
    return 'SliverGridGeometry(${properties.join(', ')})';
Adam Barth's avatar
Adam Barth committed
81
  }
82 83
}

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/// The size and position of all the tiles in a [RenderSliverGrid].
///
/// Rather that providing a grid with a [SliverGridLayout] directly, you instead
/// provide the grid a [SliverGridDelegate], which can compute a
/// [SliverGridLayout] given the current [SliverConstraints].
///
/// The tiles can be placed arbitrarily, but it is more efficient to place tiles
/// in roughly in order by scroll offset because grids reify a contiguous
/// sequence of children.
///
/// See also:
///
///  * [SliverGridRegularTileLayout], which represents a layout that uses
///    equally sized and spaced tiles.
///  * [SliverGridGeometry], which represents the size and position of a single
///    tile in a grid.
///  * [SliverGridDelegate.getLayout], which returns this object to describe the
101
///    delegate's layout.
102 103
///  * [RenderSliverGrid], which uses this class during its
///    [RenderSliverGrid.performLayout] method.
104
@immutable
105 106 107 108 109
abstract class SliverGridLayout {
  /// Abstract const constructor. This constructor enables subclasses to provide
  /// const constructors so that they can be used in const expressions.
  const SliverGridLayout();

110
  /// The minimum child index that intersects with (or is after) this scroll offset.
111 112
  int getMinChildIndexForScrollOffset(double scrollOffset);

113
  /// The maximum child index that intersects with (or is before) this scroll offset.
114 115 116 117 118
  int getMaxChildIndexForScrollOffset(double scrollOffset);

  /// The size and position of the child with the given index.
  SliverGridGeometry getGeometryForChildIndex(int index);

119 120 121 122 123
  /// The scroll extent needed to fully display all the tiles if there are
  /// `childCount` children in total.
  ///
  /// The child count will never be null.
  double computeMaxScrollOffset(int childCount);
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
}

/// A [SliverGridLayout] that uses equally sized and spaced tiles.
///
/// Rather that providing a grid with a [SliverGridLayout] directly, you instead
/// provide the grid a [SliverGridDelegate], which can compute a
/// [SliverGridLayout] given the current [SliverConstraints].
///
/// This layout is used by [SliverGridDelegateWithFixedCrossAxisCount] and
/// [SliverGridDelegateWithMaxCrossAxisExtent].
///
/// See also:
///
///  * [SliverGridDelegateWithFixedCrossAxisCount], which uses this layout.
///  * [SliverGridDelegateWithMaxCrossAxisExtent], which uses this layout.
139
///  * [SliverGridLayout], which represents an arbitrary tile layout.
140 141 142
///  * [SliverGridGeometry], which represents the size and position of a single
///    tile in a grid.
///  * [SliverGridDelegate.getLayout], which returns this object to describe the
143
///    delegate's layout.
144 145 146 147 148 149 150
///  * [RenderSliverGrid], which uses this class during its
///    [RenderSliverGrid.performLayout] method.
class SliverGridRegularTileLayout extends SliverGridLayout {
  /// Creates a layout that uses equally sized and spaced tiles.
  ///
  /// All of the arguments must not be null and must not be negative. The
  /// `crossAxisCount` argument must be greater than zero.
151
  const SliverGridRegularTileLayout({
152 153 154 155 156 157
    required this.crossAxisCount,
    required this.mainAxisStride,
    required this.crossAxisStride,
    required this.childMainAxisExtent,
    required this.childCrossAxisExtent,
    required this.reverseCrossAxis,
158 159 160 161
  }) : assert(crossAxisCount != null && crossAxisCount > 0),
       assert(mainAxisStride != null && mainAxisStride >= 0),
       assert(crossAxisStride != null && crossAxisStride >= 0),
       assert(childMainAxisExtent != null && childMainAxisExtent >= 0),
162 163
       assert(childCrossAxisExtent != null && childCrossAxisExtent >= 0),
       assert(reverseCrossAxis != null);
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

  /// The number of children in the cross axis.
  final int crossAxisCount;

  /// The number of pixels from the leading edge of one tile to the leading edge
  /// of the next tile in the main axis.
  final double mainAxisStride;

  /// The number of pixels from the leading edge of one tile to the leading edge
  /// of the next tile in the cross axis.
  final double crossAxisStride;

  /// The number of pixels from the leading edge of one tile to the trailing
  /// edge of the same tile in the main axis.
  final double childMainAxisExtent;

  /// The number of pixels from the leading edge of one tile to the trailing
  /// edge of the same tile in the cross axis.
  final double childCrossAxisExtent;
183

184 185 186 187 188 189 190 191 192 193 194
  /// Whether the children should be placed in the opposite order of increasing
  /// coordinates in the cross axis.
  ///
  /// For example, if the cross axis is horizontal, the children are placed from
  /// left to right when [reverseCrossAxis] is false and from right to left when
  /// [reverseCrossAxis] is true.
  ///
  /// Typically set to the return value of [axisDirectionIsReversed] applied to
  /// the [SliverConstraints.crossAxisDirection].
  final bool reverseCrossAxis;

195
  @override
196
  int getMinChildIndexForScrollOffset(double scrollOffset) {
197
    return mainAxisStride > precisionErrorTolerance ? crossAxisCount * (scrollOffset ~/ mainAxisStride) : 0;
198 199 200 201
  }

  @override
  int getMaxChildIndexForScrollOffset(double scrollOffset) {
202 203 204 205 206
    if (mainAxisStride > 0.0) {
      final int mainAxisCount = (scrollOffset / mainAxisStride).ceil();
      return math.max(0, crossAxisCount * mainAxisCount - 1);
    }
    return 0;
207 208
  }

209
  double _getOffsetFromStartInCrossAxis(double crossAxisStart) {
210
    if (reverseCrossAxis) {
211
      return crossAxisCount * crossAxisStride - crossAxisStart - childCrossAxisExtent - (crossAxisStride - childCrossAxisExtent);
212
    }
213 214 215
    return crossAxisStart;
  }

216 217
  @override
  SliverGridGeometry getGeometryForChildIndex(int index) {
218
    final double crossAxisStart = (index % crossAxisCount) * crossAxisStride;
219
    return SliverGridGeometry(
220
      scrollOffset: (index ~/ crossAxisCount) * mainAxisStride,
221
      crossAxisOffset: _getOffsetFromStartInCrossAxis(crossAxisStart),
222 223 224 225 226 227
      mainAxisExtent: childMainAxisExtent,
      crossAxisExtent: childCrossAxisExtent,
    );
  }

  @override
228 229
  double computeMaxScrollOffset(int childCount) {
    assert(childCount != null);
230
    final int mainAxisCount = ((childCount - 1) ~/ crossAxisCount) + 1;
231 232 233
    final double mainAxisSpacing = mainAxisStride - childMainAxisExtent;
    return mainAxisStride * mainAxisCount - mainAxisSpacing;
  }
234 235
}

236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
/// Controls the layout of tiles in a grid.
///
/// Given the current constraints on the grid, a [SliverGridDelegate] computes
/// the layout for the tiles in the grid. The tiles can be placed arbitrarily,
/// but it is more efficient to place tiles in roughly in order by scroll offset
/// because grids reify a contiguous sequence of children.
///
/// See also:
///
///  * [SliverGridDelegateWithFixedCrossAxisCount], which creates a layout with
///    a fixed number of tiles in the cross axis.
///  * [SliverGridDelegateWithMaxCrossAxisExtent], which creates a layout with
///    tiles that have a maximum cross-axis extent.
///  * [GridView], which uses this delegate to control the layout of its tiles.
///  * [SliverGrid], which uses this delegate to control the layout of its
///    tiles.
///  * [RenderSliverGrid], which uses this delegate to control the layout of its
///    tiles.
254 255 256 257 258
abstract class SliverGridDelegate {
  /// Abstract const constructor. This constructor enables subclasses to provide
  /// const constructors so that they can be used in const expressions.
  const SliverGridDelegate();

259 260
  /// Returns information about the size and position of the tiles in the grid.
  SliverGridLayout getLayout(SliverConstraints constraints);
261

262 263 264 265 266 267
  /// Override this method to return true when the children need to be
  /// laid out.
  ///
  /// This should compare the fields of the current delegate and the given
  /// `oldDelegate` and return true if the fields are such that the layout would
  /// be different.
268
  bool shouldRelayout(covariant SliverGridDelegate oldDelegate);
269 270
}

271 272 273 274 275 276 277 278
/// Creates grid layouts with a fixed number of tiles in the cross axis.
///
/// For example, if the grid is vertical, this delegate will create a layout
/// with a fixed number of columns. If the grid is horizontal, this delegate
/// will create a layout with a fixed number of rows.
///
/// This delegate creates grids with equally sized and spaced tiles.
///
279
/// {@tool dartpad}
280 281 282 283
/// Here is an example using the [childAspectRatio] property. On a device with a
/// screen width of 800.0, it creates a GridView with each tile with a width of
/// 200.0 and a height of 100.0.
///
284
/// ** See code in examples/api/lib/rendering/sliver_grid/sliver_grid_delegate_with_fixed_cross_axis_count.0.dart **
285 286
/// {@end-tool}
///
287
/// {@tool dartpad}
288 289 290 291
/// Here is an example using the [mainAxisExtent] property. On a device with a
/// screen width of 800.0, it creates a GridView with each tile with a width of
/// 200.0 and a height of 150.0.
///
292
/// ** See code in examples/api/lib/rendering/sliver_grid/sliver_grid_delegate_with_fixed_cross_axis_count.1.dart **
293 294
/// {@end-tool}
///
295 296 297 298 299 300 301 302 303 304 305
/// See also:
///
///  * [SliverGridDelegateWithMaxCrossAxisExtent], which creates a layout with
///    tiles that have a maximum cross-axis extent.
///  * [SliverGridDelegate], which creates arbitrary layouts.
///  * [GridView], which can use this delegate to control the layout of its
///    tiles.
///  * [SliverGrid], which can use this delegate to control the layout of its
///    tiles.
///  * [RenderSliverGrid], which can use this delegate to control the layout of
///    its tiles.
306
class SliverGridDelegateWithFixedCrossAxisCount extends SliverGridDelegate {
307 308 309
  /// Creates a delegate that makes grid layouts with a fixed number of tiles in
  /// the cross axis.
  ///
310 311 312 313
  /// All of the arguments except [mainAxisExtent] must not be null.
  /// The `mainAxisSpacing`, `mainAxisExtent` and `crossAxisSpacing` arguments
  /// must not be negative. The `crossAxisCount` and `childAspectRatio`
  /// arguments must be greater than zero.
314
  const SliverGridDelegateWithFixedCrossAxisCount({
315
    required this.crossAxisCount,
316 317 318
    this.mainAxisSpacing = 0.0,
    this.crossAxisSpacing = 0.0,
    this.childAspectRatio = 1.0,
319
    this.mainAxisExtent,
320 321 322 323
  }) : assert(crossAxisCount != null && crossAxisCount > 0),
       assert(mainAxisSpacing != null && mainAxisSpacing >= 0),
       assert(crossAxisSpacing != null && crossAxisSpacing >= 0),
       assert(childAspectRatio != null && childAspectRatio > 0);
324 325 326 327 328 329 330 331 332 333 334 335 336

  /// The number of children in the cross axis.
  final int crossAxisCount;

  /// The number of logical pixels between each child along the main axis.
  final double mainAxisSpacing;

  /// The number of logical pixels between each child along the cross axis.
  final double crossAxisSpacing;

  /// The ratio of the cross-axis to the main-axis extent of each child.
  final double childAspectRatio;

337 338 339 340 341 342
  /// The extent of each tile in the main axis. If provided it would define the
  /// logical pixels taken by each tile in the main-axis.
  ///
  /// If null, [childAspectRatio] is used instead.
  final double? mainAxisExtent;

343 344 345 346 347 348 349 350 351
  bool _debugAssertIsValid() {
    assert(crossAxisCount > 0);
    assert(mainAxisSpacing >= 0.0);
    assert(crossAxisSpacing >= 0.0);
    assert(childAspectRatio > 0.0);
    return true;
  }

  @override
352
  SliverGridLayout getLayout(SliverConstraints constraints) {
353
    assert(_debugAssertIsValid());
354 355 356 357
    final double usableCrossAxisExtent = math.max(
      0.0,
      constraints.crossAxisExtent - crossAxisSpacing * (crossAxisCount - 1),
    );
358
    final double childCrossAxisExtent = usableCrossAxisExtent / crossAxisCount;
359
    final double childMainAxisExtent = mainAxisExtent ?? childCrossAxisExtent / childAspectRatio;
360
    return SliverGridRegularTileLayout(
361 362 363 364 365
      crossAxisCount: crossAxisCount,
      mainAxisStride: childMainAxisExtent + mainAxisSpacing,
      crossAxisStride: childCrossAxisExtent + crossAxisSpacing,
      childMainAxisExtent: childMainAxisExtent,
      childCrossAxisExtent: childCrossAxisExtent,
366
      reverseCrossAxis: axisDirectionIsReversed(constraints.crossAxisDirection),
367 368 369 370 371 372 373 374
    );
  }

  @override
  bool shouldRelayout(SliverGridDelegateWithFixedCrossAxisCount oldDelegate) {
    return oldDelegate.crossAxisCount != crossAxisCount
        || oldDelegate.mainAxisSpacing != mainAxisSpacing
        || oldDelegate.crossAxisSpacing != crossAxisSpacing
375 376
        || oldDelegate.childAspectRatio != childAspectRatio
        || oldDelegate.mainAxisExtent != mainAxisExtent;
377 378 379
  }
}

380
/// Creates grid layouts with tiles that each have a maximum cross-axis extent.
381 382 383
///
/// This delegate will select a cross-axis extent for the tiles that is as
/// large as possible subject to the following conditions:
384
///
385 386
///  - The extent evenly divides the cross-axis extent of the grid.
///  - The extent is at most [maxCrossAxisExtent].
387
///
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
/// For example, if the grid is vertical, the grid is 500.0 pixels wide, and
/// [maxCrossAxisExtent] is 150.0, this delegate will create a grid with 4
/// columns that are 125.0 pixels wide.
///
/// This delegate creates grids with equally sized and spaced tiles.
///
/// See also:
///
///  * [SliverGridDelegateWithFixedCrossAxisCount], which creates a layout with
///    a fixed number of tiles in the cross axis.
///  * [SliverGridDelegate], which creates arbitrary layouts.
///  * [GridView], which can use this delegate to control the layout of its
///    tiles.
///  * [SliverGrid], which can use this delegate to control the layout of its
///    tiles.
///  * [RenderSliverGrid], which can use this delegate to control the layout of
///    its tiles.
405
class SliverGridDelegateWithMaxCrossAxisExtent extends SliverGridDelegate {
406 407
  /// Creates a delegate that makes grid layouts with tiles that have a maximum
  /// cross-axis extent.
408
  ///
409 410 411
  /// All of the arguments except [mainAxisExtent] must not be null.
  /// The [maxCrossAxisExtent], [mainAxisExtent], [mainAxisSpacing],
  /// and [crossAxisSpacing] arguments must not be negative.
412
  /// The [childAspectRatio] argument must be greater than zero.
413
  const SliverGridDelegateWithMaxCrossAxisExtent({
414
    required this.maxCrossAxisExtent,
415 416 417
    this.mainAxisSpacing = 0.0,
    this.crossAxisSpacing = 0.0,
    this.childAspectRatio = 1.0,
418
    this.mainAxisExtent,
419
  }) : assert(maxCrossAxisExtent != null && maxCrossAxisExtent > 0),
420 421 422
       assert(mainAxisSpacing != null && mainAxisSpacing >= 0),
       assert(crossAxisSpacing != null && crossAxisSpacing >= 0),
       assert(childAspectRatio != null && childAspectRatio > 0);
423

424 425 426 427 428 429 430 431 432 433 434
  /// The maximum extent of tiles in the cross axis.
  ///
  /// This delegate will select a cross-axis extent for the tiles that is as
  /// large as possible subject to the following conditions:
  ///
  ///  - The extent evenly divides the cross-axis extent of the grid.
  ///  - The extent is at most [maxCrossAxisExtent].
  ///
  /// For example, if the grid is vertical, the grid is 500.0 pixels wide, and
  /// [maxCrossAxisExtent] is 150.0, this delegate will create a grid with 4
  /// columns that are 125.0 pixels wide.
435 436 437 438 439 440 441 442 443 444 445
  final double maxCrossAxisExtent;

  /// The number of logical pixels between each child along the main axis.
  final double mainAxisSpacing;

  /// The number of logical pixels between each child along the cross axis.
  final double crossAxisSpacing;

  /// The ratio of the cross-axis to the main-axis extent of each child.
  final double childAspectRatio;

446 447 448 449 450 451
  /// The extent of each tile in the main axis. If provided it would define the
  /// logical pixels taken by each tile in the main-axis.
  ///
  /// If null, [childAspectRatio] is used instead.
  final double? mainAxisExtent;

452 453
  bool _debugAssertIsValid(double crossAxisExtent) {
    assert(crossAxisExtent > 0.0);
454 455 456 457 458 459 460 461
    assert(maxCrossAxisExtent > 0.0);
    assert(mainAxisSpacing >= 0.0);
    assert(crossAxisSpacing >= 0.0);
    assert(childAspectRatio > 0.0);
    return true;
  }

  @override
462
  SliverGridLayout getLayout(SliverConstraints constraints) {
463
    assert(_debugAssertIsValid(constraints.crossAxisExtent));
464
    final int crossAxisCount = (constraints.crossAxisExtent / (maxCrossAxisExtent + crossAxisSpacing)).ceil();
465 466 467 468
    final double usableCrossAxisExtent = math.max(
      0.0,
      constraints.crossAxisExtent - crossAxisSpacing * (crossAxisCount - 1),
    );
469
    final double childCrossAxisExtent = usableCrossAxisExtent / crossAxisCount;
470
    final double childMainAxisExtent = mainAxisExtent ?? childCrossAxisExtent / childAspectRatio;
471
    return SliverGridRegularTileLayout(
472 473 474 475 476
      crossAxisCount: crossAxisCount,
      mainAxisStride: childMainAxisExtent + mainAxisSpacing,
      crossAxisStride: childCrossAxisExtent + crossAxisSpacing,
      childMainAxisExtent: childMainAxisExtent,
      childCrossAxisExtent: childCrossAxisExtent,
477
      reverseCrossAxis: axisDirectionIsReversed(constraints.crossAxisDirection),
478 479 480 481 482 483 484 485
    );
  }

  @override
  bool shouldRelayout(SliverGridDelegateWithMaxCrossAxisExtent oldDelegate) {
    return oldDelegate.maxCrossAxisExtent != maxCrossAxisExtent
        || oldDelegate.mainAxisSpacing != mainAxisSpacing
        || oldDelegate.crossAxisSpacing != crossAxisSpacing
486 487
        || oldDelegate.childAspectRatio != childAspectRatio
        || oldDelegate.mainAxisExtent != mainAxisExtent;
488 489 490
  }
}

491
/// Parent data structure used by [RenderSliverGrid].
492
class SliverGridParentData extends SliverMultiBoxAdaptorParentData {
493 494 495 496 497 498
  /// The offset of the child in the non-scrolling axis.
  ///
  /// If the scroll axis is vertical, this offset is from the left-most edge of
  /// the parent to the left-most edge of the child. If the scroll axis is
  /// horizontal, this offset is from the top-most edge of the parent to the
  /// top-most edge of the child.
499
  double? crossAxisOffset;
500 501 502 503 504

  @override
  String toString() => 'crossAxisOffset=$crossAxisOffset; ${super.toString()}';
}

505
/// A sliver that places multiple box children in a two dimensional arrangement.
506 507 508 509 510 511 512 513 514 515 516
///
/// [RenderSliverGrid] places its children in arbitrary positions determined by
/// [gridDelegate]. Each child is forced to have the size specified by the
/// [gridDelegate].
///
/// See also:
///
///  * [RenderSliverList], which places its children in a linear
///    array.
///  * [RenderSliverFixedExtentList], which places its children in a linear
///    array with a fixed extent in the main axis.
517
class RenderSliverGrid extends RenderSliverMultiBoxAdaptor {
518 519 520 521
  /// Creates a sliver that contains multiple box children that whose size and
  /// position are determined by a delegate.
  ///
  /// The [childManager] and [gridDelegate] arguments must not be null.
522
  RenderSliverGrid({
523
    required super.childManager,
524
    required SliverGridDelegate gridDelegate,
525
  }) : assert(gridDelegate != null),
526
       _gridDelegate = gridDelegate;
527 528 529

  @override
  void setupParentData(RenderObject child) {
530
    if (child.parentData is! SliverGridParentData) {
531
      child.parentData = SliverGridParentData();
532
    }
533 534
  }

535
  /// The delegate that controls the size and position of the children.
536 537
  SliverGridDelegate get gridDelegate => _gridDelegate;
  SliverGridDelegate _gridDelegate;
538 539
  set gridDelegate(SliverGridDelegate value) {
    assert(value != null);
540
    if (_gridDelegate == value) {
541
      return;
542
    }
543
    if (value.runtimeType != _gridDelegate.runtimeType ||
544
        value.shouldRelayout(_gridDelegate)) {
545
      markNeedsLayout();
546
    }
547
    _gridDelegate = value;
548 549 550 551
  }

  @override
  double childCrossAxisPosition(RenderBox child) {
552
    final SliverGridParentData childParentData = child.parentData! as SliverGridParentData;
553
    return childParentData.crossAxisOffset!;
554 555 556 557
  }

  @override
  void performLayout() {
558
    final SliverConstraints constraints = this.constraints;
559
    childManager.didStartLayout();
560 561
    childManager.setDidUnderflow(false);

562
    final double scrollOffset = constraints.scrollOffset + constraints.cacheOrigin;
563
    assert(scrollOffset >= 0.0);
564 565 566
    final double remainingExtent = constraints.remainingCacheExtent;
    assert(remainingExtent >= 0.0);
    final double targetEndScrollOffset = scrollOffset + remainingExtent;
567

568 569 570
    final SliverGridLayout layout = _gridDelegate.getLayout(constraints);

    final int firstIndex = layout.getMinChildIndexForScrollOffset(scrollOffset);
571
    final int? targetLastIndex = targetEndScrollOffset.isFinite ?
572
      layout.getMaxChildIndexForScrollOffset(targetEndScrollOffset) : null;
573 574

    if (firstChild != null) {
575 576
      final int oldFirstIndex = indexOf(firstChild!);
      final int oldLastIndex = indexOf(lastChild!);
577
      final int leadingGarbage = (firstIndex - oldFirstIndex).clamp(0, childCount); // ignore_clamp_double_lint
578 579
      final int trailingGarbage = targetLastIndex == null
        ? 0
580
        : (oldLastIndex - targetLastIndex).clamp(0, childCount); // ignore_clamp_double_lint
581 582 583
      collectGarbage(leadingGarbage, trailingGarbage);
    } else {
      collectGarbage(0, 0);
584 585
    }

586
    final SliverGridGeometry firstChildGridGeometry = layout.getGeometryForChildIndex(firstIndex);
587
    final double leadingScrollOffset = firstChildGridGeometry.scrollOffset;
Adam Barth's avatar
Adam Barth committed
588
    double trailingScrollOffset = firstChildGridGeometry.trailingScrollOffset;
589 590

    if (firstChild == null) {
591 592 593
      if (!addInitialChild(index: firstIndex, layoutOffset: firstChildGridGeometry.scrollOffset)) {
        // There are either no children, or we are past the end of all our children.
        final double max = layout.computeMaxScrollOffset(childManager.childCount);
594
        geometry = SliverGeometry(
595 596 597
          scrollExtent: max,
          maxPaintExtent: max,
        );
598
        childManager.didFinishLayout();
599 600 601 602
        return;
      }
    }

603
    RenderBox? trailingChildWithLayout;
604

605
    for (int index = indexOf(firstChild!) - 1; index >= firstIndex; --index) {
606
      final SliverGridGeometry gridGeometry = layout.getGeometryForChildIndex(index);
607
      final RenderBox child = insertAndLayoutLeadingChild(
Ian Hickson's avatar
Ian Hickson committed
608
        gridGeometry.getBoxConstraints(constraints),
609
      )!;
610
      final SliverGridParentData childParentData = child.parentData! as SliverGridParentData;
611
      childParentData.layoutOffset = gridGeometry.scrollOffset;
612 613 614
      childParentData.crossAxisOffset = gridGeometry.crossAxisOffset;
      assert(childParentData.index == index);
      trailingChildWithLayout ??= child;
Adam Barth's avatar
Adam Barth committed
615
      trailingScrollOffset = math.max(trailingScrollOffset, gridGeometry.trailingScrollOffset);
616 617 618
    }

    if (trailingChildWithLayout == null) {
619
      firstChild!.layout(firstChildGridGeometry.getBoxConstraints(constraints));
620
      final SliverGridParentData childParentData = firstChild!.parentData! as SliverGridParentData;
621
      childParentData.layoutOffset = firstChildGridGeometry.scrollOffset;
622 623 624 625
      childParentData.crossAxisOffset = firstChildGridGeometry.crossAxisOffset;
      trailingChildWithLayout = firstChild;
    }

626
    for (int index = indexOf(trailingChildWithLayout!) + 1; targetLastIndex == null || index <= targetLastIndex; ++index) {
627 628
      final SliverGridGeometry gridGeometry = layout.getGeometryForChildIndex(index);
      final BoxConstraints childConstraints = gridGeometry.getBoxConstraints(constraints);
629
      RenderBox? child = childAfter(trailingChildWithLayout!);
630
      if (child == null || indexOf(child) != index) {
631 632 633 634 635 636 637 638 639 640
        child = insertAndLayoutChild(childConstraints, after: trailingChildWithLayout);
        if (child == null) {
          // We have run out of children.
          break;
        }
      } else {
        child.layout(childConstraints);
      }
      trailingChildWithLayout = child;
      assert(child != null);
641
      final SliverGridParentData childParentData = child.parentData! as SliverGridParentData;
642
      childParentData.layoutOffset = gridGeometry.scrollOffset;
643 644
      childParentData.crossAxisOffset = gridGeometry.crossAxisOffset;
      assert(childParentData.index == index);
Adam Barth's avatar
Adam Barth committed
645
      trailingScrollOffset = math.max(trailingScrollOffset, gridGeometry.trailingScrollOffset);
646 647
    }

648
    final int lastIndex = indexOf(lastChild!);
649 650

    assert(debugAssertChildListIsNonEmptyAndContiguous());
651
    assert(indexOf(firstChild!) == firstIndex);
652
    assert(targetLastIndex == null || lastIndex <= targetLastIndex);
653 654 655 656 657 658 659 660

    final double estimatedTotalExtent = childManager.estimateMaxScrollOffset(
      constraints,
      firstIndex: firstIndex,
      lastIndex: lastIndex,
      leadingScrollOffset: leadingScrollOffset,
      trailingScrollOffset: trailingScrollOffset,
    );
Adam Barth's avatar
Adam Barth committed
661
    final double paintExtent = calculatePaintOffset(
662
      constraints,
663
      from: math.min(constraints.scrollOffset, leadingScrollOffset),
664 665
      to: trailingScrollOffset,
    );
666 667 668 669 670
    final double cacheExtent = calculateCacheOffset(
      constraints,
      from: leadingScrollOffset,
      to: trailingScrollOffset,
    );
671

672
    geometry = SliverGeometry(
673
      scrollExtent: estimatedTotalExtent,
Adam Barth's avatar
Adam Barth committed
674
      paintExtent: paintExtent,
675
      maxPaintExtent: estimatedTotalExtent,
676
      cacheExtent: cacheExtent,
677
      hasVisualOverflow: estimatedTotalExtent > paintExtent || constraints.scrollOffset > 0.0 || constraints.overlap != 0.0,
678 679
    );

680 681
    // We may have started the layout while scrolled to the end, which
    // would not expose a new child.
682
    if (estimatedTotalExtent == trailingScrollOffset) {
683
      childManager.setDidUnderflow(true);
684
    }
685
    childManager.didFinishLayout();
686 687
  }
}