mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
62 lines
2.1 KiB
Dart
62 lines
2.1 KiB
Dart
// Copyright 2014 The Flutter 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/material.dart';
|
|
import 'package:flutter_api_samples/widgets/interactive_viewer/interactive_viewer.0.dart'
|
|
as example;
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Has correct items on screen', (WidgetTester tester) async {
|
|
await tester.pumpWidget(const example.InteractiveViewerExampleApp());
|
|
|
|
expect(find.widgetWithText(AppBar, 'InteractiveViewer Sample'), findsOne);
|
|
expect(find.byType(InteractiveViewer), findsOne);
|
|
|
|
expect(
|
|
tester.getRect(find.byType(Container)),
|
|
rectMoreOrLessEquals(const Rect.fromLTRB(0.0, 56.0, 800.0, 600.0)),
|
|
);
|
|
|
|
await tester.drag(find.byType(Container), const Offset(20, 20));
|
|
|
|
// Pans.
|
|
const Offset panStart = Offset(400.0, 300.0);
|
|
final Offset panEnd = panStart + const Offset(20.0, 20.0);
|
|
final TestGesture gesture = await tester.startGesture(panStart);
|
|
await tester.pump();
|
|
await gesture.moveTo(panEnd);
|
|
await tester.pump();
|
|
await gesture.up();
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(
|
|
tester.getRect(find.byType(Container)),
|
|
rectMoreOrLessEquals(const Rect.fromLTRB(20.0, 76.0, 820.0, 620.0)),
|
|
);
|
|
|
|
// Zooms.
|
|
const Offset scaleStart1 = Offset(400.0, 300.0);
|
|
final Offset scaleStart2 = scaleStart1 + const Offset(10.0, 0.0);
|
|
final Offset scaleEnd1 = scaleStart1 - const Offset(10.0, 0.0);
|
|
final Offset scaleEnd2 = scaleStart2 + const Offset(10.0, 0.0);
|
|
final TestGesture gesture1 = await tester.createGesture();
|
|
final TestGesture gesture2 = await tester.createGesture();
|
|
await gesture1.down(scaleStart1);
|
|
await gesture2.down(scaleStart2);
|
|
await tester.pump();
|
|
await gesture1.moveTo(scaleEnd1);
|
|
await gesture2.moveTo(scaleEnd2);
|
|
await tester.pump();
|
|
await gesture1.up();
|
|
await gesture2.up();
|
|
await tester.pumpAndSettle();
|
|
|
|
expect(
|
|
tester.getRect(find.byType(Container)),
|
|
rectMoreOrLessEquals(const Rect.fromLTRB(-203.0, -58.4, 1077.0, 812.0)),
|
|
);
|
|
});
|
|
}
|