stack.dart 26 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// 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;
6
import 'dart:ui' show lerpDouble;
7

8
import 'package:flutter/foundation.dart';
9

10
import 'box.dart';
11
import 'layer.dart';
12
import 'layout_helper.dart';
13
import 'object.dart';
14

Hixie's avatar
Hixie committed
15 16 17 18 19 20
/// An immutable 2D, axis-aligned, floating-point rectangle whose coordinates
/// are given relative to another rectangle's edges, known as the container.
/// Since the dimensions of the rectangle are relative to those of the
/// container, this class has no width and height members. To determine the
/// width or height of the rectangle, convert it to a [Rect] using [toRect()]
/// (passing the container's own Rect), and then examine that object.
Hixie's avatar
Hixie committed
21
///
22
/// The fields [left], [right], [bottom], and [top] must not be null.
23
@immutable
Hixie's avatar
Hixie committed
24 25
class RelativeRect {
  /// Creates a RelativeRect with the given values.
26 27 28 29
  ///
  /// The arguments must not be null.
  const RelativeRect.fromLTRB(this.left, this.top, this.right, this.bottom)
    : assert(left != null && top != null && right != null && bottom != null);
Hixie's avatar
Hixie committed
30 31 32 33 34

  /// Creates a RelativeRect from a Rect and a Size. The Rect (first argument)
  /// and the RelativeRect (the output) are in the coordinate space of the
  /// rectangle described by the Size, with 0,0 being at the top left.
  factory RelativeRect.fromSize(Rect rect, Size container) {
35
    return RelativeRect.fromLTRB(rect.left, rect.top, container.width - rect.right, container.height - rect.bottom);
Hixie's avatar
Hixie committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
  }

  /// Creates a RelativeRect from two Rects. The second Rect provides the
  /// container, the first provides the rectangle, in the same coordinate space,
  /// that is to be converted to a RelativeRect. The output will be in the
  /// container's coordinate space.
  ///
  /// For example, if the top left of the rect is at 0,0, and the top left of
  /// the container is at 100,100, then the top left of the output will be at
  /// -100,-100.
  ///
  /// If the first rect is actually in the container's coordinate space, then
  /// use [RelativeRect.fromSize] and pass the container's size as the second
  /// argument instead.
  factory RelativeRect.fromRect(Rect rect, Rect container) {
51
    return RelativeRect.fromLTRB(
Hixie's avatar
Hixie committed
52 53
      rect.left - container.left,
      rect.top - container.top,
54
      container.right - rect.right,
55
      container.bottom - rect.bottom,
Hixie's avatar
Hixie committed
56 57 58
    );
  }

59
  /// A rect that covers the entire container.
60
  static const RelativeRect fill = RelativeRect.fromLTRB(0.0, 0.0, 0.0, 0.0);
Hixie's avatar
Hixie committed
61 62

  /// Distance from the left side of the container to the left side of this rectangle.
63 64
  ///
  /// May be negative if the left side of the rectangle is outside of the container.
65
  final double left;
Hixie's avatar
Hixie committed
66 67

  /// Distance from the top side of the container to the top side of this rectangle.
68 69
  ///
  /// May be negative if the top side of the rectangle is outside of the container.
70
  final double top;
Hixie's avatar
Hixie committed
71 72

  /// Distance from the right side of the container to the right side of this rectangle.
73
  ///
74
  /// May be positive if the right side of the rectangle is outside of the container.
75
  final double right;
Hixie's avatar
Hixie committed
76 77

  /// Distance from the bottom side of the container to the bottom side of this rectangle.
78
  ///
79
  /// May be positive if the bottom side of the rectangle is outside of the container.
80
  final double bottom;
Hixie's avatar
Hixie committed
81

82 83 84 85 86 87
  /// Returns whether any of the values are greater than zero.
  ///
  /// This corresponds to one of the sides ([left], [top], [right], or [bottom]) having
  /// some positive inset towards the center.
  bool get hasInsets => left > 0.0 || top > 0.0 || right > 0.0 || bottom > 0.0;

Hixie's avatar
Hixie committed
88 89
  /// Returns a new rectangle object translated by the given offset.
  RelativeRect shift(Offset offset) {
90
    return RelativeRect.fromLTRB(left + offset.dx, top + offset.dy, right - offset.dx, bottom - offset.dy);
Hixie's avatar
Hixie committed
91 92 93 94
  }

  /// Returns a new rectangle with edges moved outwards by the given delta.
  RelativeRect inflate(double delta) {
95
    return RelativeRect.fromLTRB(left - delta, top - delta, right - delta, bottom - delta);
Hixie's avatar
Hixie committed
96 97 98 99 100 101 102 103 104
  }

  /// Returns a new rectangle with edges moved inwards by the given delta.
  RelativeRect deflate(double delta) {
    return inflate(-delta);
  }

  /// Returns a new rectangle that is the intersection of the given rectangle and this rectangle.
  RelativeRect intersect(RelativeRect other) {
105
    return RelativeRect.fromLTRB(
Hixie's avatar
Hixie committed
106 107 108
      math.max(left, other.left),
      math.max(top, other.top),
      math.max(right, other.right),
109
      math.max(bottom, other.bottom),
Hixie's avatar
Hixie committed
110 111 112
    );
  }

113
  /// Convert this [RelativeRect] to a [Rect], in the coordinate space of the container.
Ian Hickson's avatar
Ian Hickson committed
114 115 116 117 118
  ///
  /// See also:
  ///
  ///  * [toSize], which returns the size part of the rect, based on the size of
  ///    the container.
Hixie's avatar
Hixie committed
119
  Rect toRect(Rect container) {
120
    return Rect.fromLTRB(left, top, container.width - right, container.height - bottom);
Hixie's avatar
Hixie committed
121 122
  }

Ian Hickson's avatar
Ian Hickson committed
123 124 125 126 127 128
  /// Convert this [RelativeRect] to a [Size], assuming a container with the given size.
  ///
  /// See also:
  ///
  ///  * [toRect], which also computes the position relative to the container.
  Size toSize(Size container) {
129
    return Size(container.width - left - right, container.height - top - bottom);
Ian Hickson's avatar
Ian Hickson committed
130 131
  }

Hixie's avatar
Hixie committed
132 133 134
  /// Linearly interpolate between two RelativeRects.
  ///
  /// If either rect is null, this function interpolates from [RelativeRect.fill].
135
  ///
136
  /// {@macro dart.ui.shadow.lerp}
137
  static RelativeRect? lerp(RelativeRect? a, RelativeRect? b, double t) {
138
    assert(t != null);
Hixie's avatar
Hixie committed
139 140 141
    if (a == null && b == null)
      return null;
    if (a == null)
142
      return RelativeRect.fromLTRB(b!.left * t, b.top * t, b.right * t, b.bottom * t);
Hixie's avatar
Hixie committed
143
    if (b == null) {
144
      final double k = 1.0 - t;
145
      return RelativeRect.fromLTRB(b!.left * k, b.top * k, b.right * k, b.bottom * k);
Hixie's avatar
Hixie committed
146
    }
147
    return RelativeRect.fromLTRB(
148 149 150 151
      lerpDouble(a.left, b.left, t)!,
      lerpDouble(a.top, b.top, t)!,
      lerpDouble(a.right, b.right, t)!,
      lerpDouble(a.bottom, b.bottom, t)!,
Hixie's avatar
Hixie committed
152 153 154
    );
  }

155
  @override
156
  bool operator ==(Object other) {
Hixie's avatar
Hixie committed
157 158
    if (identical(this, other))
      return true;
159 160 161 162 163
    return other is RelativeRect
        && other.left == left
        && other.top == top
        && other.right == right
        && other.bottom == bottom;
Hixie's avatar
Hixie committed
164 165
  }

166
  @override
167
  int get hashCode => Object.hash(left, top, right, bottom);
Hixie's avatar
Hixie committed
168

169
  @override
170
  String toString() => 'RelativeRect.fromLTRB(${left.toStringAsFixed(1)}, ${top.toStringAsFixed(1)}, ${right.toStringAsFixed(1)}, ${bottom.toStringAsFixed(1)})';
Hixie's avatar
Hixie committed
171 172
}

Adam Barth's avatar
Adam Barth committed
173
/// Parent data for use with [RenderStack].
174
class StackParentData extends ContainerBoxParentData<RenderBox> {
Hixie's avatar
Hixie committed
175
  /// The distance by which the child's top edge is inset from the top of the stack.
176
  double? top;
177

Hixie's avatar
Hixie committed
178
  /// The distance by which the child's right edge is inset from the right of the stack.
179
  double? right;
180

Hixie's avatar
Hixie committed
181
  /// The distance by which the child's bottom edge is inset from the bottom of the stack.
182
  double? bottom;
183

Hixie's avatar
Hixie committed
184
  /// The distance by which the child's left edge is inset from the left of the stack.
185
  double? left;
186

187 188 189
  /// The child's width.
  ///
  /// Ignored if both left and right are non-null.
190
  double? width;
191 192 193 194

  /// The child's height.
  ///
  /// Ignored if both top and bottom are non-null.
195
  double? height;
196

Hixie's avatar
Hixie committed
197
  /// Get or set the current values in terms of a RelativeRect object.
198
  RelativeRect get rect => RelativeRect.fromLTRB(left!, top!, right!, bottom!);
199
  set rect(RelativeRect value) {
Hixie's avatar
Hixie committed
200 201 202
    top = value.top;
    right = value.right;
    bottom = value.bottom;
Hixie's avatar
Hixie committed
203
    left = value.left;
Hixie's avatar
Hixie committed
204 205
  }

Hixie's avatar
Hixie committed
206
  /// Whether this child is considered positioned.
207
  ///
Hixie's avatar
Hixie committed
208
  /// A child is positioned if any of the top, right, bottom, or left properties
209 210 211
  /// are non-null. Positioned children do not factor into determining the size
  /// of the stack but are instead placed relative to the non-positioned
  /// children in the stack.
212
  bool get isPositioned => top != null || right != null || bottom != null || left != null || width != null || height != null;
213

214
  @override
Hixie's avatar
Hixie committed
215
  String toString() {
216 217 218 219 220 221 222 223
    final List<String> values = <String>[
      if (top != null) 'top=${debugFormatDouble(top)}',
      if (right != null) 'right=${debugFormatDouble(right)}',
      if (bottom != null) 'bottom=${debugFormatDouble(bottom)}',
      if (left != null) 'left=${debugFormatDouble(left)}',
      if (width != null) 'width=${debugFormatDouble(width)}',
      if (height != null) 'height=${debugFormatDouble(height)}',
    ];
224 225 226
    if (values.isEmpty)
      values.add('not positioned');
    values.add(super.toString());
Hixie's avatar
Hixie committed
227 228
    return values.join('; ');
  }
229 230
}

231 232
/// How to size the non-positioned children of a [Stack].
///
233
/// This enum is used with [Stack.fit] and [RenderStack.fit] to control
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
/// how the [BoxConstraints] passed from the stack's parent to the stack's child
/// are adjusted.
///
/// See also:
///
///  * [Stack], the widget that uses this.
///  * [RenderStack], the render object that implements the stack algorithm.
enum StackFit {
  /// The constraints passed to the stack from its parent are loosened.
  ///
  /// For example, if the stack has constraints that force it to 350x600, then
  /// this would allow the non-positioned children of the stack to have any
  /// width from zero to 350 and any height from zero to 600.
  ///
  /// See also:
  ///
  ///  * [Center], which loosens the constraints passed to its child and then
  ///    centers the child in itself.
  ///  * [BoxConstraints.loosen], which implements the loosening of box
  ///    constraints.
  loose,

  /// The constraints passed to the stack from its parent are tightened to the
  /// biggest size allowed.
  ///
  /// For example, if the stack has loose constraints with a width in the range
  /// 10 to 100 and a height in the range 0 to 600, then the non-positioned
  /// children of the stack would all be sized as 100 pixels wide and 600 high.
  expand,

  /// The constraints passed to the stack from its parent are passed unmodified
  /// to the non-positioned children.
  ///
  /// For example, if a [Stack] is an [Expanded] child of a [Row], the
  /// horizontal constraints will be tight and the vertical constraints will be
  /// loose.
  passthrough,
}

273
/// Implements the stack layout algorithm.
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
///
/// In a stack layout, the children are positioned on top of each other in the
/// order in which they appear in the child list. First, the non-positioned
/// children (those with null values for top, right, bottom, and left) are
/// laid out and initially placed in the upper-left corner of the stack. The
/// stack is then sized to enclose all of the non-positioned children. If there
/// are no non-positioned children, the stack becomes as large as possible.
///
/// The final location of non-positioned children is determined by the alignment
/// parameter. The left of each non-positioned child becomes the
/// difference between the child's width and the stack's width scaled by
/// alignment.x. The top of each non-positioned child is computed
/// similarly and scaled by alignment.y. So if the alignment x and y properties
/// are 0.0 (the default) then the non-positioned children remain in the
/// upper-left corner. If the alignment x and y properties are 0.5 then the
/// non-positioned children are centered within the stack.
///
/// Next, the positioned children are laid out. If a child has top and bottom
/// values that are both non-null, the child is given a fixed height determined
/// by subtracting the sum of the top and bottom values from the height of the stack.
/// Similarly, if the child has right and left values that are both non-null,
/// the child is given a fixed width derived from the stack's width.
/// Otherwise, the child is given unbounded constraints in the non-fixed dimensions.
///
/// Once the child is laid out, the stack positions the child
/// according to the top, right, bottom, and left properties of their
/// [StackParentData]. For example, if the bottom value is 10.0, the
/// bottom edge of the child will be inset 10.0 pixels from the bottom
/// edge of the stack. If the child extends beyond the bounds of the
/// stack, the stack will clip the child's painting to the bounds of
/// the stack.
///
/// See also:
///
///  * [RenderFlow]
class RenderStack extends RenderBox
Hans Muller's avatar
Hans Muller committed
310 311
    with ContainerRenderObjectMixin<RenderBox, StackParentData>,
         RenderBoxContainerDefaultsMixin<RenderBox, StackParentData> {
312 313 314 315 316
  /// Creates a stack render object.
  ///
  /// By default, the non-positioned children of the stack are aligned by their
  /// top left corners.
  RenderStack({
317
    List<RenderBox>? children,
318
    AlignmentGeometry alignment = AlignmentDirectional.topStart,
319
    TextDirection? textDirection,
320
    StackFit fit = StackFit.loose,
321
    Clip clipBehavior = Clip.hardEdge,
322 323
  }) : assert(alignment != null),
       assert(fit != null),
324
       assert(clipBehavior != null),
325
       _alignment = alignment,
326
       _textDirection = textDirection,
327
       _fit = fit,
328
       _clipBehavior = clipBehavior {
329 330 331
    addAll(children);
  }

332 333
  bool _hasVisualOverflow = false;

334
  @override
335 336
  void setupParentData(RenderBox child) {
    if (child.parentData is! StackParentData)
337
      child.parentData = StackParentData();
338 339
  }

340
  Alignment? _resolvedAlignment;
341

Ian Hickson's avatar
Ian Hickson committed
342 343 344 345 346 347 348 349 350
  void _resolve() {
    if (_resolvedAlignment != null)
      return;
    _resolvedAlignment = alignment.resolve(textDirection);
  }

  void _markNeedResolution() {
    _resolvedAlignment = null;
    markNeedsLayout();
351 352
  }

353 354
  /// How to align the non-positioned or partially-positioned children in the
  /// stack.
355 356 357
  ///
  /// The non-positioned children are placed relative to each other such that
  /// the points determined by [alignment] are co-located. For example, if the
358
  /// [alignment] is [Alignment.topLeft], then the top left corner of
359
  /// each non-positioned child will be located at the same global coordinate.
Ian Hickson's avatar
Ian Hickson committed
360
  ///
361 362 363 364 365 366
  /// Partially-positioned children, those that do not specify an alignment in a
  /// particular axis (e.g. that have neither `top` nor `bottom` set), use the
  /// alignment to determine how they should be positioned in that
  /// under-specified axis.
  ///
  /// If this is set to an [AlignmentDirectional] object, then [textDirection]
367 368 369 370
  /// must not be null.
  AlignmentGeometry get alignment => _alignment;
  AlignmentGeometry _alignment;
  set alignment(AlignmentGeometry value) {
371
    assert(value != null);
Ian Hickson's avatar
Ian Hickson committed
372 373 374 375
    if (_alignment == value)
      return;
    _alignment = value;
    _markNeedResolution();
376 377 378
  }

  /// The text direction with which to resolve [alignment].
Ian Hickson's avatar
Ian Hickson committed
379 380 381
  ///
  /// This may be changed to null, but only after the [alignment] has been changed
  /// to a value that does not depend on the direction.
382 383 384
  TextDirection? get textDirection => _textDirection;
  TextDirection? _textDirection;
  set textDirection(TextDirection? value) {
Ian Hickson's avatar
Ian Hickson committed
385 386 387 388
    if (_textDirection == value)
      return;
    _textDirection = value;
    _markNeedResolution();
Hans Muller's avatar
Hans Muller committed
389 390
  }

391 392 393 394 395
  /// How to size the non-positioned children in the stack.
  ///
  /// The constraints passed into the [RenderStack] from its parent are either
  /// loosened ([StackFit.loose]) or tightened to their biggest size
  /// ([StackFit.expand]).
396 397 398
  StackFit get fit => _fit;
  StackFit _fit;
  set fit(StackFit value) {
399
    assert(value != null);
400 401
    if (_fit != value) {
      _fit = value;
402 403 404 405
      markNeedsLayout();
    }
  }

406
  /// {@macro flutter.material.Material.clipBehavior}
407
  ///
408 409 410 411
  /// Defaults to [Clip.hardEdge], and must not be null.
  Clip get clipBehavior => _clipBehavior;
  Clip _clipBehavior = Clip.hardEdge;
  set clipBehavior(Clip value) {
412
    assert(value != null);
413 414
    if (value != _clipBehavior) {
      _clipBehavior = value;
415
      markNeedsPaint();
416
      markNeedsSemanticsUpdate();
417 418 419
    }
  }

420
  /// Helper function for calculating the intrinsics metrics of a Stack.
421
  static double getIntrinsicDimension(RenderBox? firstChild, double Function(RenderBox child) mainChildSizeGetter) {
422
    double extent = 0.0;
423
    RenderBox? child = firstChild;
424
    while (child != null) {
425
      final StackParentData childParentData = child.parentData! as StackParentData;
Hixie's avatar
Hixie committed
426
      if (!childParentData.isPositioned)
427
        extent = math.max(extent, mainChildSizeGetter(child));
Hixie's avatar
Hixie committed
428 429
      assert(child.parentData == childParentData);
      child = childParentData.nextSibling;
430
    }
431
    return extent;
432 433
  }

434
  @override
435
  double computeMinIntrinsicWidth(double height) {
436
    return getIntrinsicDimension(firstChild, (RenderBox child) => child.getMinIntrinsicWidth(height));
437 438
  }

439
  @override
440
  double computeMaxIntrinsicWidth(double height) {
441
    return getIntrinsicDimension(firstChild, (RenderBox child) => child.getMaxIntrinsicWidth(height));
442 443
  }

444
  @override
445
  double computeMinIntrinsicHeight(double width) {
446
    return getIntrinsicDimension(firstChild, (RenderBox child) => child.getMinIntrinsicHeight(width));
447 448 449
  }

  @override
450
  double computeMaxIntrinsicHeight(double width) {
451
    return getIntrinsicDimension(firstChild, (RenderBox child) => child.getMaxIntrinsicHeight(width));
452 453
  }

454
  @override
455
  double? computeDistanceToActualBaseline(TextBaseline baseline) {
456 457 458
    return defaultComputeDistanceToHighestActualBaseline(baseline);
  }

459 460 461 462 463 464 465 466 467 468 469
  /// Lays out the positioned `child` according to `alignment` within a Stack of `size`.
  ///
  /// Returns true when the child has visual overflow.
  static bool layoutPositionedChild(RenderBox child, StackParentData childParentData, Size size, Alignment alignment) {
    assert(childParentData.isPositioned);
    assert(child.parentData == childParentData);

    bool hasVisualOverflow = false;
    BoxConstraints childConstraints = const BoxConstraints();

    if (childParentData.left != null && childParentData.right != null)
470
      childConstraints = childConstraints.tighten(width: size.width - childParentData.right! - childParentData.left!);
471 472 473 474
    else if (childParentData.width != null)
      childConstraints = childConstraints.tighten(width: childParentData.width);

    if (childParentData.top != null && childParentData.bottom != null)
475
      childConstraints = childConstraints.tighten(height: size.height - childParentData.bottom! - childParentData.top!);
476 477 478 479 480
    else if (childParentData.height != null)
      childConstraints = childConstraints.tighten(height: childParentData.height);

    child.layout(childConstraints, parentUsesSize: true);

481
    final double x;
482
    if (childParentData.left != null) {
483
      x = childParentData.left!;
484
    } else if (childParentData.right != null) {
485
      x = size.width - childParentData.right! - child.size.width;
486 487 488 489 490 491 492
    } else {
      x = alignment.alongOffset(size - child.size as Offset).dx;
    }

    if (x < 0.0 || x + child.size.width > size.width)
      hasVisualOverflow = true;

493
    final double y;
494
    if (childParentData.top != null) {
495
      y = childParentData.top!;
496
    } else if (childParentData.bottom != null) {
497
      y = size.height - childParentData.bottom! - child.size.height;
498 499 500 501 502 503 504 505 506 507 508 509
    } else {
      y = alignment.alongOffset(size - child.size as Offset).dy;
    }

    if (y < 0.0 || y + child.size.height > size.height)
      hasVisualOverflow = true;

    childParentData.offset = Offset(x, y);

    return hasVisualOverflow;
  }

510
  @override
511 512 513 514 515 516 517 518
  Size computeDryLayout(BoxConstraints constraints) {
    return _computeSize(
      constraints: constraints,
      layoutChild: ChildLayoutHelper.dryLayoutChild,
    );
  }

  Size _computeSize({required BoxConstraints constraints, required ChildLayouter layoutChild}) {
Ian Hickson's avatar
Ian Hickson committed
519 520
    _resolve();
    assert(_resolvedAlignment != null);
521
    bool hasNonPositionedChildren = false;
522
    if (childCount == 0) {
523 524
      assert(constraints.biggest.isFinite);
      return constraints.biggest;
525
    }
526

527 528 529
    double width = constraints.minWidth;
    double height = constraints.minHeight;

530
    final BoxConstraints nonPositionedConstraints;
531 532
    assert(fit != null);
    switch (fit) {
533 534 535 536
      case StackFit.loose:
        nonPositionedConstraints = constraints.loosen();
        break;
      case StackFit.expand:
537
        nonPositionedConstraints = BoxConstraints.tight(constraints.biggest);
538 539 540 541 542 543
        break;
      case StackFit.passthrough:
        nonPositionedConstraints = constraints;
        break;
    }
    assert(nonPositionedConstraints != null);
544

545
    RenderBox? child = firstChild;
546
    while (child != null) {
547
      final StackParentData childParentData = child.parentData! as StackParentData;
548

Hixie's avatar
Hixie committed
549
      if (!childParentData.isPositioned) {
550 551
        hasNonPositionedChildren = true;

552
        final Size childSize = layoutChild(child, nonPositionedConstraints);
553 554 555 556 557

        width = math.max(width, childSize.width);
        height = math.max(height, childSize.height);
      }

Hixie's avatar
Hixie committed
558
      child = childParentData.nextSibling;
559 560
    }

561
    final Size size;
562
    if (hasNonPositionedChildren) {
563
      size = Size(width, height);
564 565 566
      assert(size.width == constraints.constrainWidth(width));
      assert(size.height == constraints.constrainHeight(height));
    } else {
567
      size = constraints.biggest;
568
    }
569

570
    assert(size.isFinite);
571 572
    return size;
  }
573

574 575 576 577 578 579 580 581 582 583 584 585
  @override
  void performLayout() {
    final BoxConstraints constraints = this.constraints;
    _hasVisualOverflow = false;

    size = _computeSize(
      constraints: constraints,
      layoutChild: ChildLayoutHelper.layoutChild,
    );

    assert(_resolvedAlignment != null);
    RenderBox? child = firstChild;
586
    while (child != null) {
587
      final StackParentData childParentData = child.parentData! as StackParentData;
588

Hixie's avatar
Hixie committed
589
      if (!childParentData.isPositioned) {
590
        childParentData.offset = _resolvedAlignment!.alongOffset(size - child.size as Offset);
Hans Muller's avatar
Hans Muller committed
591
      } else {
592
        _hasVisualOverflow = layoutPositionedChild(child, childParentData, size, _resolvedAlignment!) || _hasVisualOverflow;
593 594
      }

Hixie's avatar
Hixie committed
595 596
      assert(child.parentData == childParentData);
      child = childParentData.nextSibling;
597 598 599
    }
  }

600
  @override
601
  bool hitTestChildren(BoxHitTestResult result, { required Offset position }) {
Adam Barth's avatar
Adam Barth committed
602
    return defaultHitTestChildren(result, position: position);
603 604
  }

605 606 607 608 609 610 611 612
  /// Override in subclasses to customize how the stack paints.
  ///
  /// By default, the stack uses [defaultPaint]. This function is called by
  /// [paint] after potentially applying a clip to contain visual overflow.
  @protected
  void paintStack(PaintingContext context, Offset offset) {
    defaultPaint(context, offset);
  }
Hans Muller's avatar
Hans Muller committed
613

614
  @override
615
  void paint(PaintingContext context, Offset offset) {
616
    if (clipBehavior != Clip.none && _hasVisualOverflow) {
617
      _clipRectLayer.layer = context.pushClipRect(
618 619 620 621 622
        needsCompositing,
        offset,
        Offset.zero & size,
        paintStack,
        clipBehavior: clipBehavior,
623
        oldLayer: _clipRectLayer.layer,
624
      );
625
    } else {
626
      _clipRectLayer.layer = null;
Hans Muller's avatar
Hans Muller committed
627
      paintStack(context, offset);
628
    }
629
  }
Hixie's avatar
Hixie committed
630

631 632 633 634 635 636 637
  final LayerHandle<ClipRectLayer> _clipRectLayer = LayerHandle<ClipRectLayer>();

  @override
  void dispose() {
    _clipRectLayer.layer = null;
    super.dispose();
  }
638

639
  @override
640
  Rect? describeApproximatePaintClip(RenderObject child) => _hasVisualOverflow ? Offset.zero & size : null;
Adam Barth's avatar
Adam Barth committed
641 642

  @override
643 644
  void debugFillProperties(DiagnosticPropertiesBuilder properties) {
    super.debugFillProperties(properties);
645 646 647
    properties.add(DiagnosticsProperty<AlignmentGeometry>('alignment', alignment));
    properties.add(EnumProperty<TextDirection>('textDirection', textDirection));
    properties.add(EnumProperty<StackFit>('fit', fit));
648
    properties.add(EnumProperty<Clip>('clipBehavior', clipBehavior, defaultValue: Clip.hardEdge));
Adam Barth's avatar
Adam Barth committed
649
  }
650
}
Hans Muller's avatar
Hans Muller committed
651 652 653

/// Implements the same layout algorithm as RenderStack but only paints the child
/// specified by index.
654 655
///
/// Although only one child is displayed, the cost of the layout algorithm is
Hans Muller's avatar
Hans Muller committed
656
/// still O(N), like an ordinary stack.
657 658 659
class RenderIndexedStack extends RenderStack {
  /// Creates a stack render object that paints a single child.
  ///
660
  /// If the [index] parameter is null, nothing is displayed.
Hans Muller's avatar
Hans Muller committed
661
  RenderIndexedStack({
662
    List<RenderBox>? children,
663
    AlignmentGeometry alignment = AlignmentDirectional.topStart,
664 665
    TextDirection? textDirection,
    int? index = 0,
666 667 668 669 670 671
  }) : _index = index,
       super(
         children: children,
         alignment: alignment,
         textDirection: textDirection,
       );
Hans Muller's avatar
Hans Muller committed
672

673 674
  @override
  void visitChildrenForSemantics(RenderObjectVisitor visitor) {
675
    if (index != null && firstChild != null)
676 677 678
      visitor(_childAtIndex());
  }

679
  /// The index of the child to show, null if nothing is to be displayed.
680 681 682
  int? get index => _index;
  int? _index;
  set index(int? value) {
Hans Muller's avatar
Hans Muller committed
683 684 685 686 687 688 689
    if (_index != value) {
      _index = value;
      markNeedsLayout();
    }
  }

  RenderBox _childAtIndex() {
690
    assert(index != null);
691
    RenderBox? child = firstChild;
Hans Muller's avatar
Hans Muller committed
692
    int i = 0;
693
    while (child != null && i < index!) {
694
      final StackParentData childParentData = child.parentData! as StackParentData;
Hixie's avatar
Hixie committed
695
      child = childParentData.nextSibling;
Hans Muller's avatar
Hans Muller committed
696 697 698 699
      i += 1;
    }
    assert(i == index);
    assert(child != null);
700
    return child!;
Hans Muller's avatar
Hans Muller committed
701 702
  }

703
  @override
704
  bool hitTestChildren(BoxHitTestResult result, { required Offset position }) {
705
    if (firstChild == null || index == null)
Adam Barth's avatar
Adam Barth committed
706
      return false;
Hans Muller's avatar
Hans Muller committed
707
    assert(position != null);
708
    final RenderBox child = _childAtIndex();
709
    final StackParentData childParentData = child.parentData! as StackParentData;
710 711 712
    return result.addWithPaintOffset(
      offset: childParentData.offset,
      position: position,
713
      hitTest: (BoxHitTestResult result, Offset transformed) {
714
        assert(transformed == position - childParentData.offset);
715
        return child.hitTest(result, position: transformed);
716 717
      },
    );
Hans Muller's avatar
Hans Muller committed
718 719
  }

720
  @override
Hans Muller's avatar
Hans Muller committed
721
  void paintStack(PaintingContext context, Offset offset) {
722
    if (firstChild == null || index == null)
Hans Muller's avatar
Hans Muller committed
723
      return;
724
    final RenderBox child = _childAtIndex();
725
    final StackParentData childParentData = child.parentData! as StackParentData;
Adam Barth's avatar
Adam Barth committed
726
    context.paintChild(child, childParentData.offset + offset);
Hans Muller's avatar
Hans Muller committed
727
  }
Adam Barth's avatar
Adam Barth committed
728 729

  @override
730 731
  void debugFillProperties(DiagnosticPropertiesBuilder properties) {
    super.debugFillProperties(properties);
732
    properties.add(IntProperty('index', index));
Adam Barth's avatar
Adam Barth committed
733
  }
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749

  @override
  List<DiagnosticsNode> debugDescribeChildren() {
    final List<DiagnosticsNode> children = <DiagnosticsNode>[];
    int i = 0;
    RenderObject? child = firstChild;
    while (child != null) {
      children.add(child.toDiagnosticsNode(
        name: 'child ${i + 1}',
        style: i != index! ? DiagnosticsTreeStyle.offstage : null,
      ));
      child = (child.parentData! as StackParentData).nextSibling;
      i += 1;
    }
    return children;
  }
Hans Muller's avatar
Hans Muller committed
750
}