scrollable_grid_test.dart 3.53 KB
Newer Older
1 2 3 4 5 6 7 8 9
// Copyright 2016 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 'package:flutter_test/flutter_test.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter/rendering.dart';

void main() {
10
  testWidgets('GridView default control', (WidgetTester tester) async {
11
    await tester.pumpWidget(
12
      Directionality(
13
        textDirection: TextDirection.ltr,
14 15
        child: Center(
          child: GridView.count(
16 17 18
            crossAxisCount: 1,
          ),
        ),
19
      ),
20
    );
21 22
  });

23
  // Tests https://github.com/flutter/flutter/issues/5522
24
  testWidgets('GridView displays correct children with nonzero padding', (WidgetTester tester) async {
25
    const EdgeInsets padding = EdgeInsets.fromLTRB(0.0, 100.0, 0.0, 0.0);
26

27
    final Widget testWidget = Directionality(
28
      textDirection: TextDirection.ltr,
29 30
      child: Align(
        child: SizedBox(
31
          height: 800.0,
32
          width: 300.0, // forces the grid children to be 300..300
33
          child: GridView.count(
34 35
            crossAxisCount: 1,
            padding: padding,
36 37
            children: List<Widget>.generate(10, (int index) {
              return Text('$index', key: ValueKey<int>(index));
38 39
            }).toList(),
          ),
40 41
        ),
      ),
42 43 44 45 46 47 48 49 50 51 52 53 54
    );

    await tester.pumpWidget(testWidget);

    // screen is 600px high, and has the following items:
    //   100..400 = 0
    //   400..700 = 1
    await tester.pump();
    expect(find.text('0'), findsOneWidget);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsNothing);
    expect(find.text('3'), findsNothing);

55
    await tester.drag(find.text('1'), const Offset(0.0, -500.0));
56 57 58 59 60 61 62 63 64 65 66
    await tester.pump();
    //  -100..300 = 1
    //   300..600 = 2
    //   600..600 = 3
    expect(find.text('0'), findsNothing);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsOneWidget);
    expect(find.text('4'), findsNothing);
    expect(find.text('5'), findsNothing);

67
    await tester.drag(find.text('1'), const Offset(0.0, 150.0));
68 69 70 71 72 73 74 75 76 77 78
    await tester.pump();
    // Child '0' is now back onscreen, but by less than `padding.top`.
    //  -250..050 = 0
    //   050..450 = 1
    //   450..750 = 2
    expect(find.text('0'), findsOneWidget);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsNothing);
    expect(find.text('4'), findsNothing);
  });
79 80 81 82

  testWidgets('GridView.count() fixed itemExtent, scroll to end, append, scroll', (WidgetTester tester) async {
    // Regression test for https://github.com/flutter/flutter/issues/9506
    Widget buildFrame(int itemCount) {
83
      return Directionality(
84
        textDirection: TextDirection.ltr,
85
        child: GridView.count(
86
          crossAxisCount: itemCount,
87 88
          children: List<Widget>.generate(itemCount, (int index) {
            return SizedBox(
89
              height: 200.0,
90
              child: Text('item $index'),
91 92 93
            );
          }),
        ),
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
      );
    }

    await tester.pumpWidget(buildFrame(3));
    expect(find.text('item 0'), findsOneWidget);
    expect(find.text('item 1'), findsOneWidget);
    expect(find.text('item 2'), findsOneWidget);

    await tester.pumpWidget(buildFrame(4));
    final TestGesture gesture = await tester.startGesture(const Offset(0.0, 300.0));
    await gesture.moveBy(const Offset(0.0, -200.0));
    await tester.pumpAndSettle();
    expect(find.text('item 3'), findsOneWidget);
  });

109
}