blob: 0ae6ecc60c76f403e3d7729464bb3e6b5a7e0bc1 [file] [log] [blame]
// 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/widgets.dart';
import 'package:flutter_test/flutter_test.dart' hide TypeMatcher;
class Foo extends StatefulWidget {
@override
FooState createState() => new FooState();
}
class FooState extends State<Foo> {
ScrollController scrollController = new ScrollController();
@override
Widget build(BuildContext context) {
return new LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) {
return new ScrollConfiguration(
behavior: new FooScrollBehavior(),
child: new ListView(
controller: scrollController,
children: <Widget>[
new GestureDetector(
onTap: () {
setState(() { /* this is needed to trigger the original bug this is regression-testing */ });
scrollController.animateTo(200.0, duration: const Duration(milliseconds: 500), curve: Curves.linear);
},
child: const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
)
),
const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
),
const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
),
const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
),
const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
),
const DecoratedBox(
decoration: const BoxDecoration(color: const Color(0)),
child: const SizedBox(
height: 200.0,
),
),
],
)
);
}
);
}
}
class FooScrollBehavior extends ScrollBehavior {
@override
bool shouldNotify(FooScrollBehavior old) => true;
}
void main() {
testWidgets('Can animate scroll after setState', (WidgetTester tester) async {
await tester.pumpWidget(
new Directionality(
textDirection: TextDirection.ltr,
child: new Foo(),
),
);
expect(tester.state<ScrollableState>(find.byType(Scrollable)).position.pixels, 0.0);
await tester.tap(find.byType(GestureDetector).first);
await tester.pumpAndSettle();
expect(tester.state<ScrollableState>(find.byType(Scrollable)).position.pixels, 200.0);
});
}