keep_alive_test.dart 22.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:io' show Platform;

import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/widgets.dart';

class Leaf extends StatefulWidget {
11
  const Leaf({ Key key, this.child }) : super(key: key);
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
  final Widget child;
  @override
  _LeafState createState() => new _LeafState();
}

class _LeafState extends State<Leaf> {
  bool _keepAlive = false;

  void setKeepAlive(bool value) {
    setState(() { _keepAlive = value; });
  }

  @override
  Widget build(BuildContext context) {
    return new KeepAlive(
      keepAlive: _keepAlive,
      child: widget.child,
    );
  }
}

List<Widget> generateList(Widget child) {
  return new List<Widget>.generate(
    100,
    (int index) => new Leaf(
      key: new GlobalObjectKey<_LeafState>(index),
      child: child,
    ),
    growable: false,
  );
}

void main() {
  testWidgets('KeepAlive with ListView with itemExtent', (WidgetTester tester) async {
46 47 48 49 50 51 52 53 54 55 56
    await tester.pumpWidget(
      new Directionality(
        textDirection: TextDirection.ltr,
        child: new ListView(
          addAutomaticKeepAlives: false,
          addRepaintBoundaries: false,
          itemExtent: 12.3, // about 50 widgets visible
          children: generateList(const Placeholder()),
        ),
      ),
    );
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    await tester.drag(find.byType(ListView), const Offset(0.0, -300.0)); // about 25 widgets' worth
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(true);
    await tester.drag(find.byType(ListView), const Offset(0.0, 300.0)); // back to top
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(false);
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
  });

  testWidgets('KeepAlive with ListView without itemExtent', (WidgetTester tester) async {
91 92 93 94 95 96 97 98 99 100
    await tester.pumpWidget(
      new Directionality(
        textDirection: TextDirection.ltr,
        child: new ListView(
          addAutomaticKeepAlives: false,
          addRepaintBoundaries: false,
          children: generateList(new Container(height: 12.3, child: const Placeholder())), // about 50 widgets visible
        ),
      ),
    );
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    await tester.drag(find.byType(ListView), const Offset(0.0, -300.0)); // about 25 widgets' worth
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(true);
    await tester.drag(find.byType(ListView), const Offset(0.0, 300.0)); // back to top
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(false);
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
  });

  testWidgets('KeepAlive with GridView', (WidgetTester tester) async {
135 136 137 138 139 140 141 142 143 144 145 146
    await tester.pumpWidget(
      new Directionality(
        textDirection: TextDirection.ltr,
        child: new GridView.count(
          addAutomaticKeepAlives: false,
          addRepaintBoundaries: false,
          crossAxisCount: 2,
          childAspectRatio: 400.0 / 24.6, // about 50 widgets visible
          children: generateList(new Container(child: const Placeholder())),
        ),
      ),
    );
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    await tester.drag(find.byType(GridView), const Offset(0.0, -300.0)); // about 25 widgets' worth
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(true);
    await tester.drag(find.byType(GridView), const Offset(0.0, 300.0)); // back to top
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
    const GlobalObjectKey<_LeafState>(60).currentState.setKeepAlive(false);
    await tester.pump();
    expect(find.byKey(const GlobalObjectKey<_LeafState>(3)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(30)), findsOneWidget);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(59)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(60)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(61)), findsNothing);
    expect(find.byKey(const GlobalObjectKey<_LeafState>(90)), findsNothing);
  });

  testWidgets('KeepAlive render tree description', (WidgetTester tester) async {
181 182 183 184 185 186 187 188 189 190 191
    await tester.pumpWidget(
      new Directionality(
        textDirection: TextDirection.ltr,
        child: new ListView(
          addAutomaticKeepAlives: false,
          addRepaintBoundaries: false,
          itemExtent: 400.0, // 2 visible children
          children: generateList(const Placeholder()),
        ),
      ),
    );
192
    // The important lines below are the ones marked with "<----"
193
    expect(tester.binding.renderView.toStringDeep(minLevel: DiagnosticLevel.info), equalsIgnoringHashCodes(
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
      'RenderView#00000\n'
      ' │ debug mode enabled - ${Platform.operatingSystem}\n'
      ' │ window size: Size(2400.0, 1800.0) (in physical pixels)\n'
      ' │ device pixel ratio: 3.0 (physical pixels per logical pixel)\n'
      ' │ configuration: Size(800.0, 600.0) at 3.0x (in logical pixels)\n'
      ' │\n'
      ' └─child: RenderRepaintBoundary#00000\n'
      '   │ parentData: <none>\n'
      '   │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '   │ layer: OffsetLayer#00000\n'
      '   │ size: Size(800.0, 600.0)\n'
      '   │ metrics: 0.0% useful (1 bad vs 0 good)\n'
      '   │ diagnosis: insufficient data to draw conclusion (less than five\n'
      '   │   repaints)\n'
      '   │\n'
      '   └─child: RenderCustomPaint#00000\n'
      '     │ parentData: <none> (can use size)\n'
      '     │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '     │ size: Size(800.0, 600.0)\n'
      '     │\n'
      '     └─child: RenderRepaintBoundary#00000\n'
      '       │ parentData: <none> (can use size)\n'
      '       │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '       │ layer: OffsetLayer#00000\n'
      '       │ size: Size(800.0, 600.0)\n'
      '       │ metrics: 0.0% useful (1 bad vs 0 good)\n'
      '       │ diagnosis: insufficient data to draw conclusion (less than five\n'
      '       │   repaints)\n'
      '       │\n'
      '       └─child: RenderSemanticsGestureHandler#00000\n'
      '         │ parentData: <none> (can use size)\n'
      '         │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '         │ size: Size(800.0, 600.0)\n'
227
      '         │ gestures: vertical scroll\n'
228 229 230 231 232 233 234 235 236 237 238 239 240
      '         │\n'
      '         └─child: RenderPointerListener#00000\n'
      '           │ parentData: <none> (can use size)\n'
      '           │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '           │ size: Size(800.0, 600.0)\n'
      '           │ behavior: opaque\n'
      '           │ listeners: down\n'
      '           │\n'
      '           └─child: RenderIgnorePointer#00000\n'
      '             │ parentData: <none> (can use size)\n'
      '             │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '             │ size: Size(800.0, 600.0)\n'
      '             │ ignoring: false\n'
241
      '             │ ignoringSemantics: false\n'
242 243 244 245 246 247
      '             │\n'
      '             └─child: RenderViewport#00000\n'
      '               │ parentData: <none> (can use size)\n'
      '               │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '               │ layer: OffsetLayer#00000\n'
      '               │ size: Size(800.0, 600.0)\n'
248
      '               │ axisDirection: down\n'
249
      '               │ crossAxisDirection: right\n'
250 251 252 253 254 255 256 257 258 259 260
      '               │ offset: ScrollPositionWithSingleContext#00000(offset: 0.0, range:\n'
      '               │   0.0..39400.0, viewport: 600.0, ScrollableState,\n'
      '               │   AlwaysScrollableScrollPhysics -> ClampingScrollPhysics,\n'
      '               │   IdleScrollActivity#00000, ScrollDirection.idle)\n'
      '               │ anchor: 0.0\n'
      '               │\n'
      '               └─center child: RenderSliverFixedExtentList#00000 relayoutBoundary=up1\n'
      '                 │ parentData: paintOffset=Offset(0.0, 0.0) (can use size)\n'
      '                 │ constraints: SliverConstraints(AxisDirection.down,\n'
      '                 │   GrowthDirection.forward, ScrollDirection.idle, scrollOffset:\n'
      '                 │   0.0, remainingPaintExtent: 600.0, crossAxisExtent: 800.0,\n'
261
      '                 │   crossAxisDirection: AxisDirection.right,\n'
262 263
      '                 │   viewportMainAxisExtent: 600.0)\n'
      '                 │ geometry: SliverGeometry(scrollExtent: 40000.0, paintExtent:\n'
264
      '                 │   600.0, maxPaintExtent: 40000.0, hasVisualOverflow: true)\n'
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
      '                 │ currently live children: 0 to 1\n'
      '                 │\n'
      '                 ├─child with index 0: RenderLimitedBox#00000\n'
      '                 │ │ parentData: index=0; layoutOffset=0.0\n'
      '                 │ │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 │ │ size: Size(800.0, 400.0)\n'
      '                 │ │ maxWidth: 400.0\n'
      '                 │ │ maxHeight: 400.0\n'
      '                 │ │\n'
      '                 │ └─child: RenderCustomPaint#00000\n'
      '                 │     parentData: <none> (can use size)\n'
      '                 │     constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 │     size: Size(800.0, 400.0)\n'
      '                 │\n'
      '                 └─child with index 1: RenderLimitedBox#00000\n'                                       // <----- no dashed line starts here
      '                   │ parentData: index=1; layoutOffset=400.0\n'
      '                   │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                   │ size: Size(800.0, 400.0)\n'
      '                   │ maxWidth: 400.0\n'
      '                   │ maxHeight: 400.0\n'
      '                   │\n'
      '                   └─child: RenderCustomPaint#00000\n'
      '                       parentData: <none> (can use size)\n'
      '                       constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                       size: Size(800.0, 400.0)\n'
    ));
    const GlobalObjectKey<_LeafState>(0).currentState.setKeepAlive(true);
    await tester.drag(find.byType(ListView), const Offset(0.0, -1000.0));
    await tester.pump();
    const GlobalObjectKey<_LeafState>(3).currentState.setKeepAlive(true);
    await tester.drag(find.byType(ListView), const Offset(0.0, -1000.0));
    await tester.pump();
297
    expect(tester.binding.renderView.toStringDeep(minLevel: DiagnosticLevel.info), equalsIgnoringHashCodes(
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
      'RenderView#00000\n'
      ' │ debug mode enabled - ${Platform.operatingSystem}\n'
      ' │ window size: Size(2400.0, 1800.0) (in physical pixels)\n'
      ' │ device pixel ratio: 3.0 (physical pixels per logical pixel)\n'
      ' │ configuration: Size(800.0, 600.0) at 3.0x (in logical pixels)\n'
      ' │\n'
      ' └─child: RenderRepaintBoundary#00000\n'
      '   │ parentData: <none>\n'
      '   │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '   │ layer: OffsetLayer#00000\n'
      '   │ size: Size(800.0, 600.0)\n'
      '   │ metrics: 0.0% useful (1 bad vs 0 good)\n'
      '   │ diagnosis: insufficient data to draw conclusion (less than five\n'
      '   │   repaints)\n'
      '   │\n'
      '   └─child: RenderCustomPaint#00000\n'
      '     │ parentData: <none> (can use size)\n'
      '     │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '     │ size: Size(800.0, 600.0)\n'
      '     │\n'
      '     └─child: RenderRepaintBoundary#00000\n'
      '       │ parentData: <none> (can use size)\n'
      '       │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '       │ layer: OffsetLayer#00000\n'
      '       │ size: Size(800.0, 600.0)\n'
      '       │ metrics: 0.0% useful (1 bad vs 0 good)\n'
      '       │ diagnosis: insufficient data to draw conclusion (less than five\n'
      '       │   repaints)\n'
      '       │\n'
      '       └─child: RenderSemanticsGestureHandler#00000\n'
      '         │ parentData: <none> (can use size)\n'
      '         │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '         │ size: Size(800.0, 600.0)\n'
331
      '         │ gestures: vertical scroll\n'
332 333 334 335 336 337 338 339 340 341 342 343 344
      '         │\n'
      '         └─child: RenderPointerListener#00000\n'
      '           │ parentData: <none> (can use size)\n'
      '           │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '           │ size: Size(800.0, 600.0)\n'
      '           │ behavior: opaque\n'
      '           │ listeners: down\n'
      '           │\n'
      '           └─child: RenderIgnorePointer#00000\n'
      '             │ parentData: <none> (can use size)\n'
      '             │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '             │ size: Size(800.0, 600.0)\n'
      '             │ ignoring: false\n'
345
      '             │ ignoringSemantics: false\n'
346 347 348 349 350 351
      '             │\n'
      '             └─child: RenderViewport#00000\n'
      '               │ parentData: <none> (can use size)\n'
      '               │ constraints: BoxConstraints(w=800.0, h=600.0)\n'
      '               │ layer: OffsetLayer#00000\n'
      '               │ size: Size(800.0, 600.0)\n'
352
      '               │ axisDirection: down\n'
353
      '               │ crossAxisDirection: right\n'
354 355 356 357 358 359 360 361 362 363 364
      '               │ offset: ScrollPositionWithSingleContext#00000(offset: 2000.0,\n'
      '               │   range: 0.0..39400.0, viewport: 600.0, ScrollableState,\n'
      '               │   AlwaysScrollableScrollPhysics -> ClampingScrollPhysics,\n'
      '               │   IdleScrollActivity#00000, ScrollDirection.idle)\n'
      '               │ anchor: 0.0\n'
      '               │\n'
      '               └─center child: RenderSliverFixedExtentList#00000 relayoutBoundary=up1\n'
      '                 │ parentData: paintOffset=Offset(0.0, 0.0) (can use size)\n'
      '                 │ constraints: SliverConstraints(AxisDirection.down,\n'
      '                 │   GrowthDirection.forward, ScrollDirection.idle, scrollOffset:\n'
      '                 │   2000.0, remainingPaintExtent: 600.0, crossAxisExtent: 800.0,\n'
365
      '                 │   crossAxisDirection: AxisDirection.right,\n'
366 367
      '                 │   viewportMainAxisExtent: 600.0)\n'
      '                 │ geometry: SliverGeometry(scrollExtent: 40000.0, paintExtent:\n'
368
      '                 │   600.0, maxPaintExtent: 40000.0, hasVisualOverflow: true)\n'
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
      '                 │ currently live children: 5 to 6\n'
      '                 │\n'
      '                 ├─child with index 5: RenderLimitedBox#00000\n'                                       // <----- this is index 5, not 0
      '                 │ │ parentData: index=5; layoutOffset=2000.0\n'
      '                 │ │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 │ │ size: Size(800.0, 400.0)\n'
      '                 │ │ maxWidth: 400.0\n'
      '                 │ │ maxHeight: 400.0\n'
      '                 │ │\n'
      '                 │ └─child: RenderCustomPaint#00000\n'
      '                 │     parentData: <none> (can use size)\n'
      '                 │     constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 │     size: Size(800.0, 400.0)\n'
      '                 │\n'
      '                 ├─child with index 6: RenderLimitedBox#00000\n'
      '                 ╎ │ parentData: index=6; layoutOffset=2400.0\n'
      '                 ╎ │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 ╎ │ size: Size(800.0, 400.0)\n'
      '                 ╎ │ maxWidth: 400.0\n'
      '                 ╎ │ maxHeight: 400.0\n'
      '                 ╎ │\n'
      '                 ╎ └─child: RenderCustomPaint#00000\n'
      '                 ╎     parentData: <none> (can use size)\n'
      '                 ╎     constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 ╎     size: Size(800.0, 400.0)\n'
      '                 ╎\n'
395
      '                 ╎╌child with index 0 (kept alive offstage): RenderLimitedBox#00000\n'                 // <----- this one is index 0 and is marked as being offstage
396 397 398 399 400 401 402 403 404 405 406
      '                 ╎ │ parentData: index=0; keepAlive; layoutOffset=0.0\n'
      '                 ╎ │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 ╎ │ size: Size(800.0, 400.0)\n'
      '                 ╎ │ maxWidth: 400.0\n'
      '                 ╎ │ maxHeight: 400.0\n'
      '                 ╎ │\n'
      '                 ╎ └─child: RenderCustomPaint#00000\n'
      '                 ╎     parentData: <none> (can use size)\n'
      '                 ╎     constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                 ╎     size: Size(800.0, 400.0)\n'
      '                 ╎\n'                                                                                  // <----- dashed line ends here
407
      '                 └╌child with index 3 (kept alive offstage): RenderLimitedBox#00000\n'
408 409 410 411 412 413 414 415 416 417 418 419 420 421
      '                   │ parentData: index=3; keepAlive; layoutOffset=1200.0\n'
      '                   │ constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                   │ size: Size(800.0, 400.0)\n'
      '                   │ maxWidth: 400.0\n'
      '                   │ maxHeight: 400.0\n'
      '                   │\n'
      '                   └─child: RenderCustomPaint#00000\n'
      '                       parentData: <none> (can use size)\n'
      '                       constraints: BoxConstraints(w=800.0, h=400.0)\n'
      '                       size: Size(800.0, 400.0)\n'
    ));
  });

}