Unverified Commit ea5435c2 authored by Dan Field's avatar Dan Field Committed by GitHub

Widgets app refactor (#22269)

* Refactor of cupertino/material/widgets app

* update docs 

* Update tests for const
parent 582f35df
...@@ -15,7 +15,7 @@ void main() { ...@@ -15,7 +15,7 @@ void main() {
await WidgetsBinding.instance.reassembleApplication(); await WidgetsBinding.instance.reassembleApplication();
return log; return log;
}); });
runApp(MaterialApp(home: const Test())); runApp(const MaterialApp(home: Test()));
} }
class Test extends SingleChildRenderObjectWidget { class Test extends SingleChildRenderObjectWidget {
......
...@@ -7,9 +7,9 @@ import 'package:flutter/material.dart'; ...@@ -7,9 +7,9 @@ import 'package:flutter/material.dart';
class AnimatedIconsTestApp extends StatelessWidget { class AnimatedIconsTestApp extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return const MaterialApp(
title: 'Animated Icons Test', title: 'Animated Icons Test',
home: const Scaffold( home: Scaffold(
body: IconsList(), body: IconsList(),
), ),
); );
......
...@@ -474,7 +474,7 @@ class _AnimationDemoState extends State<AnimationDemo> with TickerProviderStateM ...@@ -474,7 +474,7 @@ class _AnimationDemoState extends State<AnimationDemo> with TickerProviderStateM
} }
void main() { void main() {
runApp(MaterialApp( runApp(const MaterialApp(
home: const AnimationDemo(), home: AnimationDemo(),
)); ));
} }
...@@ -91,7 +91,7 @@ void main() { ...@@ -91,7 +91,7 @@ void main() {
testWidgets('grid_list_demo', (WidgetTester tester) async { testWidgets('grid_list_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const GridListDemo())); await tester.pumpWidget(const MaterialApp(home: GridListDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -105,21 +105,21 @@ void main() { ...@@ -105,21 +105,21 @@ void main() {
testWidgets('leave_behind_demo', (WidgetTester tester) async { testWidgets('leave_behind_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const LeaveBehindDemo())); await tester.pumpWidget(const MaterialApp(home: LeaveBehindDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
testWidgets('list_demo', (WidgetTester tester) async { testWidgets('list_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const ListDemo())); await tester.pumpWidget(const MaterialApp(home: ListDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
testWidgets('menu_demo', (WidgetTester tester) async { testWidgets('menu_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const MenuDemo())); await tester.pumpWidget(const MaterialApp(home: MenuDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -133,7 +133,7 @@ void main() { ...@@ -133,7 +133,7 @@ void main() {
testWidgets('overscroll_demo', (WidgetTester tester) async { testWidgets('overscroll_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const OverscrollDemo())); await tester.pumpWidget(const MaterialApp(home: OverscrollDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -161,7 +161,7 @@ void main() { ...@@ -161,7 +161,7 @@ void main() {
testWidgets('reorderable_list_demo', (WidgetTester tester) async { testWidgets('reorderable_list_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const ReorderableListDemo())); await tester.pumpWidget(const MaterialApp(home: ReorderableListDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -196,7 +196,7 @@ void main() { ...@@ -196,7 +196,7 @@ void main() {
testWidgets('snack_bar_demo', (WidgetTester tester) async { testWidgets('snack_bar_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const SnackBarDemo())); await tester.pumpWidget(const MaterialApp(home: SnackBarDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -217,7 +217,7 @@ void main() { ...@@ -217,7 +217,7 @@ void main() {
testWidgets('text_form_field_demo', (WidgetTester tester) async { testWidgets('text_form_field_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(home: const TextFormFieldDemo())); await tester.pumpWidget(const MaterialApp(home: TextFormFieldDemo()));
expect(tester, meetsGuideline(androidTapTargetGuideline)); expect(tester, meetsGuideline(androidTapTargetGuideline));
handle.dispose(); handle.dispose();
}); });
...@@ -380,12 +380,12 @@ void main() { ...@@ -380,12 +380,12 @@ void main() {
handle.dispose(); handle.dispose();
}); });
testWidgets('overscroll_demo $themeName', (WidgetTester tester) async { testWidgets('overscroll_demo', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(MaterialApp(theme: theme, home: const OverscrollDemo())); await tester.pumpWidget(const MaterialApp(home: OverscrollDemo()));
await expectLater(tester, meetsGuideline(textContrastGuideline)); await expectLater(tester, meetsGuideline(textContrastGuideline));
handle.dispose(); handle.dispose();
}); });
testWidgets('page_selector_demo $themeName', (WidgetTester tester) async { testWidgets('page_selector_demo $themeName', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
......
...@@ -14,7 +14,7 @@ void main() { ...@@ -14,7 +14,7 @@ void main() {
// We press the "1" and the "2" buttons and check that the display // We press the "1" and the "2" buttons and check that the display
// reads "12". // reads "12".
testWidgets('Flutter calculator app smoke test', (WidgetTester tester) async { testWidgets('Flutter calculator app smoke test', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(home: const CalculatorDemo())); await tester.pumpWidget(const MaterialApp(home: CalculatorDemo()));
final Finder oneButton = find.widgetWithText(InkResponse, '1'); final Finder oneButton = find.widgetWithText(InkResponse, '1');
expect(oneButton, findsOneWidget); expect(oneButton, findsOneWidget);
......
...@@ -8,7 +8,7 @@ import 'package:flutter_test/flutter_test.dart'; ...@@ -8,7 +8,7 @@ import 'package:flutter_test/flutter_test.dart';
void main() { void main() {
testWidgets('validates name field correctly', (WidgetTester tester) async { testWidgets('validates name field correctly', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(home: const TextFormFieldDemo())); await tester.pumpWidget(const MaterialApp(home: TextFormFieldDemo()));
final Finder submitButton = find.widgetWithText(RaisedButton, 'SUBMIT'); final Finder submitButton = find.widgetWithText(RaisedButton, 'SUBMIT');
expect(submitButton, findsOneWidget); expect(submitButton, findsOneWidget);
......
This diff is collapsed.
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'app.dart' show CupertinoApp;
import 'route.dart'; import 'route.dart';
/// A single tab view with its own [Navigator] state and history. /// A single tab view with its own [Navigator] state and history.
...@@ -114,7 +115,7 @@ class _CupertinoTabViewState extends State<CupertinoTabView> { ...@@ -114,7 +115,7 @@ class _CupertinoTabViewState extends State<CupertinoTabView> {
@override @override
void initState() { void initState() {
super.initState(); super.initState();
_heroController = HeroController(); // Linear tweening. _heroController = CupertinoApp.createCupertinoHeroController();
_updateObservers(); _updateObservers();
} }
......
This diff is collapsed.
This diff is collapsed.
...@@ -66,7 +66,7 @@ void main() { ...@@ -66,7 +66,7 @@ void main() {
testWidgets('Has semantic annotations', (WidgetTester tester) async { testWidgets('Has semantic annotations', (WidgetTester tester) async {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget(MaterialApp(home: const Material( await tester.pumpWidget(const MaterialApp(home: Material(
child: CupertinoAlertDialog( child: CupertinoAlertDialog(
title: Text('The Title'), title: Text('The Title'),
content: Text('Content'), content: Text('Content'),
......
...@@ -16,8 +16,8 @@ int count = 0; ...@@ -16,8 +16,8 @@ int count = 0;
void main() { void main() {
testWidgets('Middle still in center with asymmetrical actions', (WidgetTester tester) async { testWidgets('Middle still in center with asymmetrical actions', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
leading: CupertinoButton(child: Text('Something'), onPressed: null,), leading: CupertinoButton(child: Text('Something'), onPressed: null,),
middle: Text('Title'), middle: Text('Title'),
), ),
...@@ -30,8 +30,8 @@ void main() { ...@@ -30,8 +30,8 @@ void main() {
testWidgets('Middle still in center with back button', (WidgetTester tester) async { testWidgets('Middle still in center with back button', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
), ),
), ),
...@@ -54,8 +54,8 @@ void main() { ...@@ -54,8 +54,8 @@ void main() {
testWidgets('Opaque background does not add blur effects', (WidgetTester tester) async { testWidgets('Opaque background does not add blur effects', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
backgroundColor: Color(0xFFE5E5E5), backgroundColor: Color(0xFFE5E5E5),
), ),
...@@ -66,8 +66,8 @@ void main() { ...@@ -66,8 +66,8 @@ void main() {
testWidgets('Non-opaque background adds blur effects', (WidgetTester tester) async { testWidgets('Non-opaque background adds blur effects', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
), ),
), ),
...@@ -120,8 +120,8 @@ void main() { ...@@ -120,8 +120,8 @@ void main() {
testWidgets('Padding works in RTL', (WidgetTester tester) async { testWidgets('Padding works in RTL', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Directionality( home: Directionality(
textDirection: TextDirection.rtl, textDirection: TextDirection.rtl,
child: Align( child: Align(
alignment: Alignment.topCenter, alignment: Alignment.topCenter,
...@@ -151,8 +151,8 @@ void main() { ...@@ -151,8 +151,8 @@ void main() {
testWidgets('Verify styles of each slot', (WidgetTester tester) async { testWidgets('Verify styles of each slot', (WidgetTester tester) async {
count = 0x000000; count = 0x000000;
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
leading: _ExpectStyles(color: Color(0xFF001122), index: 0x000001), leading: _ExpectStyles(color: Color(0xFF001122), index: 0x000001),
middle: _ExpectStyles(color: Color(0xFF000000), letterSpacing: -0.08, index: 0x000100), middle: _ExpectStyles(color: Color(0xFF000000), letterSpacing: -0.08, index: 0x000100),
trailing: _ExpectStyles(color: Color(0xFF001122), index: 0x010000), trailing: _ExpectStyles(color: Color(0xFF001122), index: 0x010000),
...@@ -165,8 +165,8 @@ void main() { ...@@ -165,8 +165,8 @@ void main() {
testWidgets('No slivers with no large titles', (WidgetTester tester) async { testWidgets('No slivers with no large titles', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoPageScaffold( home: CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar( navigationBar: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
), ),
...@@ -431,8 +431,8 @@ void main() { ...@@ -431,8 +431,8 @@ void main() {
testWidgets('Auto back/close button', (WidgetTester tester) async { testWidgets('Auto back/close button', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Home page'), middle: Text('Home page'),
), ),
), ),
...@@ -486,8 +486,8 @@ void main() { ...@@ -486,8 +486,8 @@ void main() {
testWidgets('Long back label turns into "back"', (WidgetTester tester) async { testWidgets('Long back label turns into "back"', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -529,8 +529,8 @@ void main() { ...@@ -529,8 +529,8 @@ void main() {
testWidgets('Border should be displayed by default', (WidgetTester tester) async { testWidgets('Border should be displayed by default', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
), ),
), ),
...@@ -551,8 +551,8 @@ void main() { ...@@ -551,8 +551,8 @@ void main() {
testWidgets('Overrides border color', (WidgetTester tester) async { testWidgets('Overrides border color', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
border: Border( border: Border(
bottom: BorderSide( bottom: BorderSide(
...@@ -580,8 +580,8 @@ void main() { ...@@ -580,8 +580,8 @@ void main() {
testWidgets('Border should not be displayed when null', (WidgetTester tester) async { testWidgets('Border should not be displayed when null', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoNavigationBar( home: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
border: null, border: null,
), ),
...@@ -746,8 +746,8 @@ void main() { ...@@ -746,8 +746,8 @@ void main() {
'Standard title golden', 'Standard title golden',
(WidgetTester tester) async { (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const RepaintBoundary( home: RepaintBoundary(
child: CupertinoPageScaffold( child: CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar( navigationBar: CupertinoNavigationBar(
middle: Text('Bling bling'), middle: Text('Bling bling'),
......
...@@ -14,8 +14,8 @@ Future<void> startTransitionBetween( ...@@ -14,8 +14,8 @@ Future<void> startTransitionBetween(
String toTitle, String toTitle,
}) async { }) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -195,8 +195,8 @@ void main() { ...@@ -195,8 +195,8 @@ void main() {
testWidgets('Fullscreen dialogs do not create heroes', testWidgets('Fullscreen dialogs do not create heroes',
(WidgetTester tester) async { (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
......
...@@ -146,8 +146,8 @@ void main() { ...@@ -146,8 +146,8 @@ void main() {
testWidgets('test iOS fullscreen dialog transition', (WidgetTester tester) async { testWidgets('test iOS fullscreen dialog transition', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Center(child: Text('Page 1')), home: Center(child: Text('Page 1')),
), ),
); );
......
...@@ -9,8 +9,8 @@ import 'package:flutter_test/flutter_test.dart'; ...@@ -9,8 +9,8 @@ import 'package:flutter_test/flutter_test.dart';
void main() { void main() {
testWidgets('Middle auto-populates with title', (WidgetTester tester) async { testWidgets('Middle auto-populates with title', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -39,8 +39,8 @@ void main() { ...@@ -39,8 +39,8 @@ void main() {
testWidgets('Large title auto-populates with title', (WidgetTester tester) async { testWidgets('Large title auto-populates with title', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -104,8 +104,8 @@ void main() { ...@@ -104,8 +104,8 @@ void main() {
testWidgets('Leading auto-populates with back button with previous title', (WidgetTester tester) async { testWidgets('Leading auto-populates with back button with previous title', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -150,8 +150,8 @@ void main() { ...@@ -150,8 +150,8 @@ void main() {
testWidgets('Previous title is correct on first transition frame', (WidgetTester tester) async { testWidgets('Previous title is correct on first transition frame', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
...@@ -193,8 +193,8 @@ void main() { ...@@ -193,8 +193,8 @@ void main() {
testWidgets('Previous title stays up to date with changing routes', (WidgetTester tester) async { testWidgets('Previous title stays up to date with changing routes', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const Placeholder(), home: Placeholder(),
), ),
); );
......
...@@ -11,8 +11,8 @@ import '../painting/mocks_for_image_cache.dart'; ...@@ -11,8 +11,8 @@ import '../painting/mocks_for_image_cache.dart';
void main() { void main() {
testWidgets('Contents are behind translucent bar', (WidgetTester tester) async { testWidgets('Contents are behind translucent bar', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoPageScaffold( home: CupertinoPageScaffold(
// Default nav bar is translucent. // Default nav bar is translucent.
navigationBar: CupertinoNavigationBar( navigationBar: CupertinoNavigationBar(
middle: Text('Title'), middle: Text('Title'),
...@@ -276,8 +276,8 @@ void main() { ...@@ -276,8 +276,8 @@ void main() {
testWidgets('Decorated with white background by default', (WidgetTester tester) async { testWidgets('Decorated with white background by default', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoPageScaffold( home: CupertinoPageScaffold(
child: Center(), child: Center(),
), ),
), ),
...@@ -292,8 +292,8 @@ void main() { ...@@ -292,8 +292,8 @@ void main() {
testWidgets('Overrides background color', (WidgetTester tester) async { testWidgets('Overrides background color', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
CupertinoApp( const CupertinoApp(
home: const CupertinoPageScaffold( home: CupertinoPageScaffold(
child: Center(), child: Center(),
backgroundColor: Color(0xFF010203), backgroundColor: Color(0xFF010203),
), ),
......
...@@ -67,9 +67,9 @@ void main() { ...@@ -67,9 +67,9 @@ void main() {
testWidgets('About box logic defaults to executable name for app name', (WidgetTester tester) async { testWidgets('About box logic defaults to executable name for app name', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
title: 'flutter_tester', title: 'flutter_tester',
home: const Material(child: AboutListTile()), home: Material(child: AboutListTile()),
), ),
); );
expect(find.text('About flutter_tester'), findsOneWidget); expect(find.text('About flutter_tester'), findsOneWidget);
...@@ -89,8 +89,8 @@ void main() { ...@@ -89,8 +89,8 @@ void main() {
}); });
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Center( home: Center(
child: LicensePage(), child: LicensePage(),
), ),
), ),
......
...@@ -28,9 +28,9 @@ class StateMarkerState extends State<StateMarker> { ...@@ -28,9 +28,9 @@ class StateMarkerState extends State<StateMarker> {
void main() { void main() {
testWidgets('Can nest apps', (WidgetTester tester) async { testWidgets('Can nest apps', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: MaterialApp( home: MaterialApp(
home: const Text('Home sweet home'), home: Text('Home sweet home'),
), ),
), ),
); );
...@@ -57,8 +57,8 @@ void main() { ...@@ -57,8 +57,8 @@ void main() {
await tester.pumpWidget(FocusScope( await tester.pumpWidget(FocusScope(
autofocus: true, autofocus: true,
node: focusScopeNode, node: focusScopeNode,
child: MaterialApp( child: const MaterialApp(
home: const Text('Home'), home: Text('Home'),
), ),
)); ));
...@@ -67,8 +67,8 @@ void main() { ...@@ -67,8 +67,8 @@ void main() {
testWidgets('Can show grid without losing sync', (WidgetTester tester) async { testWidgets('Can show grid without losing sync', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const StateMarker(), home: StateMarker(),
), ),
); );
...@@ -76,9 +76,9 @@ void main() { ...@@ -76,9 +76,9 @@ void main() {
state1.marker = 'original'; state1.marker = 'original';
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
debugShowMaterialGrid: true, debugShowMaterialGrid: true,
home: const StateMarker(), home: StateMarker(),
), ),
); );
...@@ -205,7 +205,7 @@ void main() { ...@@ -205,7 +205,7 @@ void main() {
}); });
testWidgets('Cannot pop the initial route', (WidgetTester tester) async { testWidgets('Cannot pop the initial route', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(home: const Text('Home'))); await tester.pumpWidget(const MaterialApp(home: Text('Home')));
expect(find.text('Home'), findsOneWidget); expect(find.text('Home'), findsOneWidget);
...@@ -400,9 +400,9 @@ void main() { ...@@ -400,9 +400,9 @@ void main() {
home: const Placeholder(), home: const Placeholder(),
)); ));
expect(key.currentState, isInstanceOf<NavigatorState>()); expect(key.currentState, isInstanceOf<NavigatorState>());
await tester.pumpWidget(MaterialApp( await tester.pumpWidget(const MaterialApp(
color: const Color(0xFF112233), color: Color(0xFF112233),
home: const Placeholder(), home: Placeholder(),
)); ));
expect(key.currentState, isNull); expect(key.currentState, isNull);
await tester.pumpWidget(MaterialApp( await tester.pumpWidget(MaterialApp(
......
...@@ -9,8 +9,8 @@ import 'package:flutter/rendering.dart'; ...@@ -9,8 +9,8 @@ import 'package:flutter/rendering.dart';
void main() { void main() {
testWidgets('no overlap with floating action button', (WidgetTester tester) async { testWidgets('no overlap with floating action button', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
onPressed: null, onPressed: null,
), ),
...@@ -95,8 +95,8 @@ void main() { ...@@ -95,8 +95,8 @@ void main() {
// _BottomAppBarClipper will try an illegal downcast. // _BottomAppBarClipper will try an illegal downcast.
testWidgets('toggle shape to null', (WidgetTester tester) async { testWidgets('toggle shape to null', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: BottomAppBar( bottomNavigationBar: BottomAppBar(
shape: RectangularNotch(), shape: RectangularNotch(),
), ),
...@@ -105,8 +105,8 @@ void main() { ...@@ -105,8 +105,8 @@ void main() {
); );
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: BottomAppBar( bottomNavigationBar: BottomAppBar(
shape: null, shape: null,
), ),
...@@ -115,8 +115,8 @@ void main() { ...@@ -115,8 +115,8 @@ void main() {
); );
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: BottomAppBar( bottomNavigationBar: BottomAppBar(
shape: RectangularNotch(), shape: RectangularNotch(),
), ),
...@@ -127,8 +127,8 @@ void main() { ...@@ -127,8 +127,8 @@ void main() {
testWidgets('no notch when notch param is null', (WidgetTester tester) async { testWidgets('no notch when notch param is null', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: ShapeListener(BottomAppBar( bottomNavigationBar: ShapeListener(BottomAppBar(
shape: null, shape: null,
)), )),
...@@ -159,8 +159,8 @@ void main() { ...@@ -159,8 +159,8 @@ void main() {
testWidgets('notch no margin', (WidgetTester tester) async { testWidgets('notch no margin', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: ShapeListener( bottomNavigationBar: ShapeListener(
BottomAppBar( BottomAppBar(
child: SizedBox(height: 100.0), child: SizedBox(height: 100.0),
...@@ -211,8 +211,8 @@ void main() { ...@@ -211,8 +211,8 @@ void main() {
testWidgets('notch with margin', (WidgetTester tester) async { testWidgets('notch with margin', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: ShapeListener( bottomNavigationBar: ShapeListener(
BottomAppBar( BottomAppBar(
child: SizedBox(height: 100.0), child: SizedBox(height: 100.0),
...@@ -263,8 +263,8 @@ void main() { ...@@ -263,8 +263,8 @@ void main() {
testWidgets('observes safe area', (WidgetTester tester) async { testWidgets('observes safe area', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const MediaQuery( home: MediaQuery(
data: MediaQueryData( data: MediaQueryData(
padding: EdgeInsets.all(50.0), padding: EdgeInsets.all(50.0),
), ),
...@@ -287,8 +287,8 @@ void main() { ...@@ -287,8 +287,8 @@ void main() {
testWidgets('clipBehavior is propagated', (WidgetTester tester) async { testWidgets('clipBehavior is propagated', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: bottomNavigationBar:
BottomAppBar( BottomAppBar(
child: SizedBox(height: 100.0), child: SizedBox(height: 100.0),
...@@ -303,8 +303,8 @@ void main() { ...@@ -303,8 +303,8 @@ void main() {
expect(physicalShape.clipBehavior, Clip.none); expect(physicalShape.clipBehavior, Clip.none);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomNavigationBar: bottomNavigationBar:
BottomAppBar( BottomAppBar(
child: SizedBox(height: 100.0), child: SizedBox(height: 100.0),
......
...@@ -1181,8 +1181,8 @@ void main() { ...@@ -1181,8 +1181,8 @@ void main() {
testWidgets('label only', (WidgetTester tester) async { testWidgets('label only', (WidgetTester tester) async {
final SemanticsTester semanticsTester = SemanticsTester(tester); final SemanticsTester semanticsTester = SemanticsTester(tester);
await tester.pumpWidget(MaterialApp( await tester.pumpWidget(const MaterialApp(
home: const Material( home: Material(
child: RawChip( child: RawChip(
label: Text('test'), label: Text('test'),
), ),
......
...@@ -106,8 +106,8 @@ void main() { ...@@ -106,8 +106,8 @@ void main() {
testWidgets('Simple dialog control test', (WidgetTester tester) async { testWidgets('Simple dialog control test', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: RaisedButton( child: RaisedButton(
onPressed: null, onPressed: null,
...@@ -149,8 +149,8 @@ void main() { ...@@ -149,8 +149,8 @@ void main() {
testWidgets('Barrier dismissible', (WidgetTester tester) async { testWidgets('Barrier dismissible', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: RaisedButton( child: RaisedButton(
onPressed: null, onPressed: null,
...@@ -212,8 +212,8 @@ void main() { ...@@ -212,8 +212,8 @@ void main() {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
const String buttonText = 'A button covered by dialog overlay'; const String buttonText = 'A button covered by dialog overlay';
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: RaisedButton( child: RaisedButton(
onPressed: null, onPressed: null,
......
...@@ -61,8 +61,8 @@ void main() { ...@@ -61,8 +61,8 @@ void main() {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
debugDefaultTargetPlatformOverride = TargetPlatform.iOS; debugDefaultTargetPlatformOverride = TargetPlatform.iOS;
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
drawer: Drawer() drawer: Drawer()
), ),
), ),
...@@ -86,8 +86,8 @@ void main() { ...@@ -86,8 +86,8 @@ void main() {
testWidgets('Drawer dismiss barrier has no label on Android', (WidgetTester tester) async { testWidgets('Drawer dismiss barrier has no label on Android', (WidgetTester tester) async {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
drawer: Drawer() drawer: Drawer()
), ),
), ),
......
...@@ -36,8 +36,8 @@ void main() { ...@@ -36,8 +36,8 @@ void main() {
testWidgets('Floating Action Button tooltip', (WidgetTester tester) async { testWidgets('Floating Action Button tooltip', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
onPressed: null, onPressed: null,
tooltip: 'Add', tooltip: 'Add',
...@@ -54,8 +54,8 @@ void main() { ...@@ -54,8 +54,8 @@ void main() {
// Regression test for: https://github.com/flutter/flutter/pull/21084 // Regression test for: https://github.com/flutter/flutter/pull/21084
testWidgets('Floating Action Button tooltip (long press button edge)', (WidgetTester tester) async { testWidgets('Floating Action Button tooltip (long press button edge)', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
onPressed: null, onPressed: null,
tooltip: 'Add', tooltip: 'Add',
...@@ -75,8 +75,8 @@ void main() { ...@@ -75,8 +75,8 @@ void main() {
// Regression test for: https://github.com/flutter/flutter/pull/21084 // Regression test for: https://github.com/flutter/flutter/pull/21084
testWidgets('Floating Action Button tooltip (long press button edge - no child)', (WidgetTester tester) async { testWidgets('Floating Action Button tooltip (long press button edge - no child)', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
onPressed: null, onPressed: null,
tooltip: 'Add', tooltip: 'Add',
...@@ -94,8 +94,8 @@ void main() { ...@@ -94,8 +94,8 @@ void main() {
testWidgets('Floating Action Button tooltip (no child)', (WidgetTester tester) async { testWidgets('Floating Action Button tooltip (no child)', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
onPressed: null, onPressed: null,
tooltip: 'Add', tooltip: 'Add',
...@@ -150,8 +150,8 @@ void main() { ...@@ -150,8 +150,8 @@ void main() {
testWidgets('FloatingActionButton.isExtended', (WidgetTester tester) async { testWidgets('FloatingActionButton.isExtended', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
floatingActionButton: FloatingActionButton(onPressed: null), floatingActionButton: FloatingActionButton(onPressed: null),
), ),
), ),
......
...@@ -180,8 +180,8 @@ void main() { ...@@ -180,8 +180,8 @@ void main() {
// Remove the persistent bottomSheet // Remove the persistent bottomSheet
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
bottomSheet: null, bottomSheet: null,
body: Placeholder(), body: Placeholder(),
), ),
......
...@@ -124,7 +124,7 @@ void main() { ...@@ -124,7 +124,7 @@ void main() {
}); });
testWidgets('Floating action entrance/exit animation', (WidgetTester tester) async { testWidgets('Floating action entrance/exit animation', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(home: const Scaffold( await tester.pumpWidget(const MaterialApp(home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
key: Key('one'), key: Key('one'),
onPressed: null, onPressed: null,
...@@ -134,7 +134,7 @@ void main() { ...@@ -134,7 +134,7 @@ void main() {
expect(tester.binding.transientCallbackCount, 0); expect(tester.binding.transientCallbackCount, 0);
await tester.pumpWidget(MaterialApp(home: const Scaffold( await tester.pumpWidget(const MaterialApp(home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
key: Key('two'), key: Key('two'),
onPressed: null, onPressed: null,
...@@ -146,11 +146,11 @@ void main() { ...@@ -146,11 +146,11 @@ void main() {
await tester.pumpWidget(Container()); await tester.pumpWidget(Container());
expect(tester.binding.transientCallbackCount, 0); expect(tester.binding.transientCallbackCount, 0);
await tester.pumpWidget(MaterialApp(home: const Scaffold())); await tester.pumpWidget(const MaterialApp(home: Scaffold()));
expect(tester.binding.transientCallbackCount, 0); expect(tester.binding.transientCallbackCount, 0);
await tester.pumpWidget(MaterialApp(home: const Scaffold( await tester.pumpWidget(const MaterialApp(home: Scaffold(
floatingActionButton: FloatingActionButton( floatingActionButton: FloatingActionButton(
key: Key('one'), key: Key('one'),
onPressed: null, onPressed: null,
...@@ -569,7 +569,7 @@ void main() { ...@@ -569,7 +569,7 @@ void main() {
const String drawerLabel = 'I am the reason for this test'; const String drawerLabel = 'I am the reason for this test';
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget(MaterialApp(home: const Scaffold( await tester.pumpWidget(const MaterialApp(home: Scaffold(
body: Text(bodyLabel), body: Text(bodyLabel),
persistentFooterButtons: <Widget>[Text(persistentFooterButtonLabel)], persistentFooterButtons: <Widget>[Text(persistentFooterButtonLabel)],
bottomNavigationBar: Text(bottomNavigationBarLabel), bottomNavigationBar: Text(bottomNavigationBarLabel),
...@@ -970,7 +970,7 @@ void main() { ...@@ -970,7 +970,7 @@ void main() {
const String endDrawerLabel = 'I am the label on end side'; const String endDrawerLabel = 'I am the label on end side';
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget(MaterialApp(home: const Scaffold( await tester.pumpWidget(const MaterialApp(home: Scaffold(
body: Text(bodyLabel), body: Text(bodyLabel),
drawer: Drawer(child: Text(drawerLabel)), drawer: Drawer(child: Text(drawerLabel)),
endDrawer: Drawer(child: Text(endDrawerLabel)), endDrawer: Drawer(child: Text(endDrawerLabel)),
......
...@@ -37,8 +37,8 @@ void main() { ...@@ -37,8 +37,8 @@ void main() {
expect(tester.testTextInput.isVisible, isFalse); expect(tester.testTextInput.isVisible, isFalse);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: TextField( child: TextField(
autofocus: true, autofocus: true,
...@@ -59,8 +59,8 @@ void main() { ...@@ -59,8 +59,8 @@ void main() {
expect(tester.testTextInput.isVisible, isFalse); expect(tester.testTextInput.isVisible, isFalse);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: TextField(), child: TextField(),
), ),
...@@ -93,8 +93,8 @@ void main() { ...@@ -93,8 +93,8 @@ void main() {
expect(tester.testTextInput.isVisible, isFalse); expect(tester.testTextInput.isVisible, isFalse);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: TextField( child: TextField(
autofocus: true, autofocus: true,
...@@ -211,8 +211,8 @@ void main() { ...@@ -211,8 +211,8 @@ void main() {
// Regression test for https://github.com/flutter/flutter/issues/16880 // Regression test for https://github.com/flutter/flutter/issues/16880
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: Center( child: Center(
child: TextField( child: TextField(
decoration: null decoration: null
......
...@@ -7,11 +7,11 @@ import 'package:flutter_test/flutter_test.dart'; ...@@ -7,11 +7,11 @@ import 'package:flutter_test/flutter_test.dart';
void main() { void main() {
testWidgets('TextField works correctly when changing helperText', (WidgetTester tester) async { testWidgets('TextField works correctly when changing helperText', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(home: const Material(child: TextField(decoration: InputDecoration(helperText: 'Awesome'))))); await tester.pumpWidget(const MaterialApp(home: Material(child: TextField(decoration: InputDecoration(helperText: 'Awesome')))));
expect(find.text('Awesome'), findsNWidgets(1)); expect(find.text('Awesome'), findsNWidgets(1));
await tester.pump(const Duration(milliseconds: 100)); await tester.pump(const Duration(milliseconds: 100));
expect(find.text('Awesome'), findsNWidgets(1)); expect(find.text('Awesome'), findsNWidgets(1));
await tester.pumpWidget(MaterialApp(home: const Material(child: TextField(decoration: InputDecoration(errorText: 'Awesome'))))); await tester.pumpWidget(const MaterialApp(home: Material(child: TextField(decoration: InputDecoration(errorText: 'Awesome')))));
expect(find.text('Awesome'), findsNWidgets(2)); expect(find.text('Awesome'), findsNWidgets(2));
}); });
} }
...@@ -1721,8 +1721,8 @@ void main() { ...@@ -1721,8 +1721,8 @@ void main() {
}); });
testWidgets('setting maxLength shows counter', (WidgetTester tester) async { testWidgets('setting maxLength shows counter', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp( await tester.pumpWidget(const MaterialApp(
home: const Material( home: Material(
child: DefaultTextStyle( child: DefaultTextStyle(
style: TextStyle(fontFamily: 'Ahem', fontSize: 10.0), style: TextStyle(fontFamily: 'Ahem', fontSize: 10.0),
child: Center( child: Center(
...@@ -1746,8 +1746,8 @@ void main() { ...@@ -1746,8 +1746,8 @@ void main() {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Material( home: Material(
child: DefaultTextStyle( child: DefaultTextStyle(
style: TextStyle(fontFamily: 'Ahem', fontSize: 10.0), style: TextStyle(fontFamily: 'Ahem', fontSize: 10.0),
child: Center( child: Center(
......
...@@ -610,8 +610,8 @@ void main() { ...@@ -610,8 +610,8 @@ void main() {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Center( home: Center(
child: Tooltip( child: Tooltip(
message: 'Foo', message: 'Foo',
child: Text('Bar'), child: Text('Bar'),
...@@ -645,8 +645,8 @@ void main() { ...@@ -645,8 +645,8 @@ void main() {
final SemanticsTester semantics = SemanticsTester(tester); final SemanticsTester semantics = SemanticsTester(tester);
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Center( home: Center(
child: Tooltip( child: Tooltip(
message: 'Foo', message: 'Foo',
child: Text('Bar'), child: Text('Bar'),
......
...@@ -269,7 +269,7 @@ void main() { ...@@ -269,7 +269,7 @@ void main() {
testWidgets('Banner widget in MaterialApp', (WidgetTester tester) async { testWidgets('Banner widget in MaterialApp', (WidgetTester tester) async {
debugDisableShadows = false; debugDisableShadows = false;
await tester.pumpWidget(MaterialApp(home: const Placeholder())); await tester.pumpWidget(const MaterialApp(home: Placeholder()));
expect(find.byType(CheckedModeBanner), paints expect(find.byType(CheckedModeBanner), paints
..save() ..save()
..translate(x: 800.0, y: 0.0) ..translate(x: 800.0, y: 0.0)
......
...@@ -7,8 +7,8 @@ import 'package:flutter_test/flutter_test.dart'; ...@@ -7,8 +7,8 @@ import 'package:flutter_test/flutter_test.dart';
void main() { void main() {
testWidgets('reassemble does not crash', (WidgetTester tester) async { testWidgets('reassemble does not crash', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp( await tester.pumpWidget(const MaterialApp(
home: const Text('Hello World') home: Text('Hello World')
)); ));
await tester.pump(); await tester.pump();
tester.binding.reassembleApplication(); tester.binding.reassembleApplication();
......
...@@ -10,8 +10,8 @@ void main() { ...@@ -10,8 +10,8 @@ void main() {
testWidgets('receiveAction() forwards exception when exception occurs during action processing', testWidgets('receiveAction() forwards exception when exception occurs during action processing',
(WidgetTester tester) async { (WidgetTester tester) async {
// Setup a widget that can receive focus so that we can open the keyboard. // Setup a widget that can receive focus so that we can open the keyboard.
final Widget widget = MaterialApp( const Widget widget = MaterialApp(
home: const Material( home: Material(
child: TextField(), child: TextField(),
), ),
); );
......
...@@ -533,8 +533,8 @@ void main() { ...@@ -533,8 +533,8 @@ void main() {
group('getSemanticsData', () { group('getSemanticsData', () {
testWidgets('throws when there are no semantics', (WidgetTester tester) async { testWidgets('throws when there are no semantics', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
MaterialApp( const MaterialApp(
home: const Scaffold( home: Scaffold(
body: Text('hello'), body: Text('hello'),
), ),
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment