
* Add a Scrollable builder, refactor ScrollableList, et al * Add space between the dialog demo buttons * removed vestigial code
36 lines
1.1 KiB
Dart
36 lines
1.1 KiB
Dart
// Copyright 2015 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';
|
|
|
|
void main() {
|
|
testWidgets('Scroll flings twice in a row does not crash', (WidgetTester tester) async {
|
|
await tester.pumpWidget(new Block(
|
|
children: <Widget>[
|
|
new Container(height: 100000.0)
|
|
]
|
|
));
|
|
|
|
ScrollableState scrollable =
|
|
tester.state/*<ScrollableState>*/(find.byType(Scrollable));
|
|
|
|
expect(scrollable.scrollOffset, equals(0.0));
|
|
|
|
await tester.flingFrom(new Point(200.0, 300.0), new Offset(0.0, -200.0), 500.0);
|
|
await tester.pump();
|
|
await tester.pump(const Duration(seconds: 5));
|
|
|
|
expect(scrollable.scrollOffset, greaterThan(0.0));
|
|
|
|
double oldOffset = scrollable.scrollOffset;
|
|
|
|
await tester.flingFrom(new Point(200.0, 300.0), new Offset(0.0, -200.0), 500.0);
|
|
await tester.pump();
|
|
await tester.pump(const Duration(seconds: 5));
|
|
|
|
expect(scrollable.scrollOffset, greaterThan(oldOffset));
|
|
});
|
|
}
|