Commit 03c54abd authored by Alexandre Ardhuin's avatar Alexandre Ardhuin Committed by GitHub

make some widgets const (#9477)

parent cbb49179
...@@ -128,15 +128,15 @@ class ContactsDemoState extends State<ContactsDemo> { ...@@ -128,15 +128,15 @@ class ContactsDemoState extends State<ContactsDemo> {
}); });
}, },
itemBuilder: (BuildContext context) => <PopupMenuItem<AppBarBehavior>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<AppBarBehavior>>[
new PopupMenuItem<AppBarBehavior>( const PopupMenuItem<AppBarBehavior>(
value: AppBarBehavior.normal, value: AppBarBehavior.normal,
child: const Text('App bar scrolls away') child: const Text('App bar scrolls away')
), ),
new PopupMenuItem<AppBarBehavior>( const PopupMenuItem<AppBarBehavior>(
value: AppBarBehavior.pinned, value: AppBarBehavior.pinned,
child: const Text('App bar stays put') child: const Text('App bar stays put')
), ),
new PopupMenuItem<AppBarBehavior>( const PopupMenuItem<AppBarBehavior>(
value: AppBarBehavior.floating, value: AppBarBehavior.floating,
child: const Text('App bar floats') child: const Text('App bar floats')
), ),
......
...@@ -192,11 +192,11 @@ class _BottomNavigationDemoState extends State<BottomNavigationDemo> ...@@ -192,11 +192,11 @@ class _BottomNavigationDemoState extends State<BottomNavigationDemo>
}); });
}, },
itemBuilder: (BuildContext context) => <PopupMenuItem<BottomNavigationBarType>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<BottomNavigationBarType>>[
new PopupMenuItem<BottomNavigationBarType>( const PopupMenuItem<BottomNavigationBarType>(
value: BottomNavigationBarType.fixed, value: BottomNavigationBarType.fixed,
child: const Text('Fixed'), child: const Text('Fixed'),
), ),
new PopupMenuItem<BottomNavigationBarType>( const PopupMenuItem<BottomNavigationBarType>(
value: BottomNavigationBarType.shifting, value: BottomNavigationBarType.shifting,
child: const Text('Shifting'), child: const Text('Shifting'),
) )
......
...@@ -317,15 +317,15 @@ class GridListDemoState extends State<GridListDemo> { ...@@ -317,15 +317,15 @@ class GridListDemoState extends State<GridListDemo> {
new PopupMenuButton<GridDemoTileStyle>( new PopupMenuButton<GridDemoTileStyle>(
onSelected: changeTileStyle, onSelected: changeTileStyle,
itemBuilder: (BuildContext context) => <PopupMenuItem<GridDemoTileStyle>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<GridDemoTileStyle>>[
new PopupMenuItem<GridDemoTileStyle>( const PopupMenuItem<GridDemoTileStyle>(
value: GridDemoTileStyle.imageOnly, value: GridDemoTileStyle.imageOnly,
child: const Text('Image only'), child: const Text('Image only'),
), ),
new PopupMenuItem<GridDemoTileStyle>( const PopupMenuItem<GridDemoTileStyle>(
value: GridDemoTileStyle.oneLine, value: GridDemoTileStyle.oneLine,
child: const Text('One line'), child: const Text('One line'),
), ),
new PopupMenuItem<GridDemoTileStyle>( const PopupMenuItem<GridDemoTileStyle>(
value: GridDemoTileStyle.twoLine, value: GridDemoTileStyle.twoLine,
child: const Text('Two line'), child: const Text('Two line'),
), ),
......
...@@ -137,11 +137,11 @@ class LeaveBehindDemoState extends State<LeaveBehindDemo> { ...@@ -137,11 +137,11 @@ class LeaveBehindDemoState extends State<LeaveBehindDemo> {
new PopupMenuButton<LeaveBehindDemoAction>( new PopupMenuButton<LeaveBehindDemoAction>(
onSelected: handleDemoAction, onSelected: handleDemoAction,
itemBuilder: (BuildContext context) => <PopupMenuEntry<LeaveBehindDemoAction>>[ itemBuilder: (BuildContext context) => <PopupMenuEntry<LeaveBehindDemoAction>>[
new PopupMenuItem<LeaveBehindDemoAction>( const PopupMenuItem<LeaveBehindDemoAction>(
value: LeaveBehindDemoAction.reset, value: LeaveBehindDemoAction.reset,
child: const Text('Reset the list') child: const Text('Reset the list')
), ),
new PopupMenuDivider(), // ignore: list_element_type_not_assignable, https://github.com/flutter/flutter/issues/5771 const PopupMenuDivider(), // ignore: list_element_type_not_assignable, https://github.com/flutter/flutter/issues/5771
new CheckedPopupMenuItem<LeaveBehindDemoAction>( new CheckedPopupMenuItem<LeaveBehindDemoAction>(
value: LeaveBehindDemoAction.horizontalSwipe, value: LeaveBehindDemoAction.horizontalSwipe,
checked: _dismissDirection == DismissDirection.horizontal, checked: _dismissDirection == DismissDirection.horizontal,
......
...@@ -67,15 +67,15 @@ class MenuDemoState extends State<MenuDemo> { ...@@ -67,15 +67,15 @@ class MenuDemoState extends State<MenuDemo> {
new PopupMenuButton<String>( new PopupMenuButton<String>(
onSelected: showMenuSelection, onSelected: showMenuSelection,
itemBuilder: (BuildContext context) => <PopupMenuItem<String>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<String>>[
new PopupMenuItem<String>( const PopupMenuItem<String>(
value: 'Toolbar menu', value: 'Toolbar menu',
child: const Text('Toolbar menu') child: const Text('Toolbar menu')
), ),
new PopupMenuItem<String>( const PopupMenuItem<String>(
value: 'Right here', value: 'Right here',
child: const Text('Right here') child: const Text('Right here')
), ),
new PopupMenuItem<String>( const PopupMenuItem<String>(
value: 'Hooray!', value: 'Hooray!',
child: const Text('Hooray!') child: const Text('Hooray!')
), ),
...@@ -99,7 +99,7 @@ class MenuDemoState extends State<MenuDemo> { ...@@ -99,7 +99,7 @@ class MenuDemoState extends State<MenuDemo> {
value: _simpleValue1, value: _simpleValue1,
child: const Text('Context menu item one') child: const Text('Context menu item one')
), ),
new PopupMenuItem<String>( const PopupMenuItem<String>(
enabled: false, enabled: false,
child: const Text('A disabled menu item') child: const Text('A disabled menu item')
), ),
...@@ -140,7 +140,7 @@ class MenuDemoState extends State<MenuDemo> { ...@@ -140,7 +140,7 @@ class MenuDemoState extends State<MenuDemo> {
title: const Text('Get link') title: const Text('Get link')
) )
), ),
new PopupMenuDivider(), // ignore: list_element_type_not_assignable, https://github.com/flutter/flutter/issues/5771 const PopupMenuDivider(), // ignore: list_element_type_not_assignable, https://github.com/flutter/flutter/issues/5771
new PopupMenuItem<String>( new PopupMenuItem<String>(
value: 'Remove', value: 'Remove',
child: new ListTile( child: new ListTile(
......
...@@ -63,17 +63,17 @@ class _ProgressIndicatorDemoState extends State<ProgressIndicatorDemo> with Sing ...@@ -63,17 +63,17 @@ class _ProgressIndicatorDemoState extends State<ProgressIndicatorDemo> with Sing
Widget _buildIndicators(BuildContext context, Widget child) { Widget _buildIndicators(BuildContext context, Widget child) {
final List<Widget> indicators = <Widget>[ final List<Widget> indicators = <Widget>[
new SizedBox( const SizedBox(
width: 200.0, width: 200.0,
child: new LinearProgressIndicator() child: const LinearProgressIndicator()
), ),
new LinearProgressIndicator(), const LinearProgressIndicator(),
new LinearProgressIndicator(), const LinearProgressIndicator(),
new LinearProgressIndicator(value: _animation.value), new LinearProgressIndicator(value: _animation.value),
new Row( new Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[ children: <Widget>[
new CircularProgressIndicator(), const CircularProgressIndicator(),
new SizedBox( new SizedBox(
width: 20.0, width: 20.0,
height: 20.0, height: 20.0,
......
...@@ -64,15 +64,15 @@ class ScrollableTabsDemoState extends State<ScrollableTabsDemo> with SingleTicke ...@@ -64,15 +64,15 @@ class ScrollableTabsDemoState extends State<ScrollableTabsDemo> with SingleTicke
new PopupMenuButton<TabsDemoStyle>( new PopupMenuButton<TabsDemoStyle>(
onSelected: changeDemoStyle, onSelected: changeDemoStyle,
itemBuilder: (BuildContext context) => <PopupMenuItem<TabsDemoStyle>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<TabsDemoStyle>>[
new PopupMenuItem<TabsDemoStyle>( const PopupMenuItem<TabsDemoStyle>(
value: TabsDemoStyle.iconsAndText, value: TabsDemoStyle.iconsAndText,
child: const Text('Icons and text') child: const Text('Icons and text')
), ),
new PopupMenuItem<TabsDemoStyle>( const PopupMenuItem<TabsDemoStyle>(
value: TabsDemoStyle.iconsOnly, value: TabsDemoStyle.iconsOnly,
child: const Text('Icons only') child: const Text('Icons only')
), ),
new PopupMenuItem<TabsDemoStyle>( const PopupMenuItem<TabsDemoStyle>(
value: TabsDemoStyle.textOnly, value: TabsDemoStyle.textOnly,
child: const Text('Text only') child: const Text('Text only')
), ),
......
...@@ -174,8 +174,8 @@ class _SelectionControlsDemoState extends State<SelectionControlsDemo> { ...@@ -174,8 +174,8 @@ class _SelectionControlsDemoState extends State<SelectionControlsDemo> {
} }
), ),
// Disabled switches // Disabled switches
new Switch(value: true, onChanged: null), const Switch(value: true, onChanged: null),
new Switch(value: false, onChanged: null) const Switch(value: false, onChanged: null)
], ],
), ),
); );
......
...@@ -113,15 +113,15 @@ class ShrinePageState extends State<ShrinePage> { ...@@ -113,15 +113,15 @@ class ShrinePageState extends State<ShrinePage> {
), ),
new PopupMenuButton<ShrineAction>( new PopupMenuButton<ShrineAction>(
itemBuilder: (BuildContext context) => <PopupMenuItem<ShrineAction>>[ itemBuilder: (BuildContext context) => <PopupMenuItem<ShrineAction>>[
new PopupMenuItem<ShrineAction>( const PopupMenuItem<ShrineAction>(
value: ShrineAction.sortByPrice, value: ShrineAction.sortByPrice,
child: const Text('Sort by price') child: const Text('Sort by price')
), ),
new PopupMenuItem<ShrineAction>( const PopupMenuItem<ShrineAction>(
value: ShrineAction.sortByProduct, value: ShrineAction.sortByProduct,
child: const Text('Sort by product') child: const Text('Sort by product')
), ),
new PopupMenuItem<ShrineAction>( const PopupMenuItem<ShrineAction>(
value: ShrineAction.emptyCart, value: ShrineAction.emptyCart,
child: const Text('Empty shopping cart') child: const Text('Empty shopping cart')
) )
......
...@@ -128,8 +128,8 @@ class FullScreenCodeDialogState extends State<FullScreenCodeDialog> { ...@@ -128,8 +128,8 @@ class FullScreenCodeDialogState extends State<FullScreenCodeDialog> {
Widget body; Widget body;
if (_exampleCode == null) { if (_exampleCode == null) {
body = new Center( body = const Center(
child: new CircularProgressIndicator() child: const CircularProgressIndicator()
); );
} else { } else {
body = new SingleChildScrollView( body = new SingleChildScrollView(
......
...@@ -192,7 +192,7 @@ new Switch( ...@@ -192,7 +192,7 @@ new Switch(
// Create a disabled switch. // Create a disabled switch.
// Switches are disabled when onChanged isn't // Switches are disabled when onChanged isn't
// specified or null. // specified or null.
new Switch(value: false, onChanged: null); const Switch(value: false, onChanged: null);
// END // END
} }
} }
......
...@@ -209,15 +209,15 @@ class StockHomeState extends State<StockHome> { ...@@ -209,15 +209,15 @@ class StockHomeState extends State<StockHome> {
checked: _autorefresh, checked: _autorefresh,
child: const Text('Autorefresh'), child: const Text('Autorefresh'),
), ),
new PopupMenuItem<_StockMenuItem>( const PopupMenuItem<_StockMenuItem>(
value: _StockMenuItem.refresh, value: _StockMenuItem.refresh,
child: const Text('Refresh'), child: const Text('Refresh'),
), ),
new PopupMenuItem<_StockMenuItem>( const PopupMenuItem<_StockMenuItem>(
value: _StockMenuItem.speedUp, value: _StockMenuItem.speedUp,
child: const Text('Increase animation speed'), child: const Text('Increase animation speed'),
), ),
new PopupMenuItem<_StockMenuItem>( const PopupMenuItem<_StockMenuItem>(
value: _StockMenuItem.speedDown, value: _StockMenuItem.speedDown,
child: const Text('Decrease animation speed'), child: const Text('Decrease animation speed'),
), ),
......
...@@ -434,10 +434,10 @@ class _LicensePageState extends State<LicensePage> { ...@@ -434,10 +434,10 @@ class _LicensePageState extends State<LicensePage> {
]; ];
contents.addAll(_licenses); contents.addAll(_licenses);
if (!_loaded) { if (!_loaded) {
contents.add(new Padding( contents.add(const Padding(
padding: const EdgeInsets.symmetric(vertical: 24.0), padding: const EdgeInsets.symmetric(vertical: 24.0),
child: new Center( child: const Center(
child: new CircularProgressIndicator() child: const CircularProgressIndicator()
) )
)); ));
} }
......
...@@ -484,7 +484,7 @@ class _AppBarState extends State<AppBar> { ...@@ -484,7 +484,7 @@ class _AppBarState extends State<AppBar> {
} }
class _FloatingAppBar extends StatefulWidget { class _FloatingAppBar extends StatefulWidget {
_FloatingAppBar({ Key key, this.child }) : super(key: key); const _FloatingAppBar({ Key key, this.child }) : super(key: key);
final Widget child; final Widget child;
......
...@@ -243,13 +243,13 @@ class PaginatedDataTableState extends State<PaginatedDataTable> { ...@@ -243,13 +243,13 @@ class PaginatedDataTableState extends State<PaginatedDataTable> {
final List<DataCell> cells = widget.columns.map<DataCell>((DataColumn column) { final List<DataCell> cells = widget.columns.map<DataCell>((DataColumn column) {
if (!column.numeric) { if (!column.numeric) {
haveProgressIndicator = true; haveProgressIndicator = true;
return new DataCell(new CircularProgressIndicator()); return const DataCell(const CircularProgressIndicator());
} }
return DataCell.empty; return DataCell.empty;
}).toList(); }).toList();
if (!haveProgressIndicator) { if (!haveProgressIndicator) {
haveProgressIndicator = true; haveProgressIndicator = true;
cells[0] = new DataCell(new CircularProgressIndicator()); cells[0] = const DataCell(const CircularProgressIndicator());
} }
return new DataRow.byIndex( return new DataRow.byIndex(
index: index, index: index,
......
...@@ -76,7 +76,7 @@ class PopupMenuDivider extends PopupMenuEntry<dynamic> { ...@@ -76,7 +76,7 @@ class PopupMenuDivider extends PopupMenuEntry<dynamic> {
/// Creates a horizontal divider for a popup menu. /// Creates a horizontal divider for a popup menu.
/// ///
/// By default, the divider has a height of 16.0 logical pixels. /// By default, the divider has a height of 16.0 logical pixels.
PopupMenuDivider({ Key key, this.height: 16.0 }) : super(key: key); const PopupMenuDivider({ Key key, this.height: 16.0 }) : super(key: key);
@override @override
final double height; final double height;
...@@ -111,7 +111,7 @@ class PopupMenuItem<T> extends PopupMenuEntry<T> { ...@@ -111,7 +111,7 @@ class PopupMenuItem<T> extends PopupMenuEntry<T> {
/// Creates an item for a popup menu. /// Creates an item for a popup menu.
/// ///
/// By default, the item is enabled. /// By default, the item is enabled.
PopupMenuItem({ const PopupMenuItem({
Key key, Key key,
this.value, this.value,
this.enabled: true, this.enabled: true,
...@@ -195,7 +195,7 @@ class CheckedPopupMenuItem<T> extends PopupMenuItem<T> { ...@@ -195,7 +195,7 @@ class CheckedPopupMenuItem<T> extends PopupMenuItem<T> {
/// Creates a popup menu item with a checkmark. /// Creates a popup menu item with a checkmark.
/// ///
/// By default, the menu item is enabled but unchecked. /// By default, the menu item is enabled but unchecked.
CheckedPopupMenuItem({ const CheckedPopupMenuItem({
Key key, Key key,
T value, T value,
this.checked: false, this.checked: false,
...@@ -252,7 +252,7 @@ class _CheckedPopupMenuItemState<T> extends _PopupMenuItemState<CheckedPopupMenu ...@@ -252,7 +252,7 @@ class _CheckedPopupMenuItemState<T> extends _PopupMenuItemState<CheckedPopupMenu
} }
class _PopupMenu<T> extends StatelessWidget { class _PopupMenu<T> extends StatelessWidget {
_PopupMenu({ const _PopupMenu({
Key key, Key key,
this.route this.route
}) : super(key: key); }) : super(key: key);
......
...@@ -30,7 +30,7 @@ abstract class ProgressIndicator extends StatefulWidget { ...@@ -30,7 +30,7 @@ abstract class ProgressIndicator extends StatefulWidget {
/// The [value] argument can be either null (corresponding to an indeterminate /// The [value] argument can be either null (corresponding to an indeterminate
/// progress indcator) or non-null (corresponding to a determinate progress /// progress indcator) or non-null (corresponding to a determinate progress
/// indicator). See [value] for details. /// indicator). See [value] for details.
ProgressIndicator({ const ProgressIndicator({
Key key, Key key,
this.value, this.value,
this.backgroundColor, this.backgroundColor,
...@@ -137,7 +137,7 @@ class LinearProgressIndicator extends ProgressIndicator { ...@@ -137,7 +137,7 @@ class LinearProgressIndicator extends ProgressIndicator {
/// The [value] argument can be either null (corresponding to an indeterminate /// The [value] argument can be either null (corresponding to an indeterminate
/// progress indcator) or non-null (corresponding to a determinate progress /// progress indcator) or non-null (corresponding to a determinate progress
/// indicator). See [value] for details. /// indicator). See [value] for details.
LinearProgressIndicator({ const LinearProgressIndicator({
Key key, Key key,
double value double value
}) : super(key: key, value: value); }) : super(key: key, value: value);
...@@ -278,7 +278,7 @@ class CircularProgressIndicator extends ProgressIndicator { ...@@ -278,7 +278,7 @@ class CircularProgressIndicator extends ProgressIndicator {
/// The [value] argument can be either null (corresponding to an indeterminate /// The [value] argument can be either null (corresponding to an indeterminate
/// progress indcator) or non-null (corresponding to a determinate progress /// progress indcator) or non-null (corresponding to a determinate progress
/// indicator). See [value] for details. /// indicator). See [value] for details.
CircularProgressIndicator({ const CircularProgressIndicator({
Key key, Key key,
double value, double value,
Color backgroundColor, Color backgroundColor,
...@@ -438,7 +438,7 @@ class RefreshProgressIndicator extends CircularProgressIndicator { ...@@ -438,7 +438,7 @@ class RefreshProgressIndicator extends CircularProgressIndicator {
/// ///
/// Rather than creating a refresh progress indicator directly, consider using /// Rather than creating a refresh progress indicator directly, consider using
/// a [RefreshIndicator] together with a [Scrollable] widget. /// a [RefreshIndicator] together with a [Scrollable] widget.
RefreshProgressIndicator({ const RefreshProgressIndicator({
Key key, Key key,
double value, double value,
Color backgroundColor, Color backgroundColor,
......
...@@ -42,7 +42,7 @@ class Switch extends StatefulWidget { ...@@ -42,7 +42,7 @@ class Switch extends StatefulWidget {
/// ///
/// * [value] determines this switch is on or off. /// * [value] determines this switch is on or off.
/// * [onChanged] is called when the user toggles with switch on or off. /// * [onChanged] is called when the user toggles with switch on or off.
Switch({ const Switch({
Key key, Key key,
@required this.value, @required this.value,
@required this.onChanged, @required this.onChanged,
...@@ -137,7 +137,7 @@ class _SwitchState extends State<Switch> with TickerProviderStateMixin { ...@@ -137,7 +137,7 @@ class _SwitchState extends State<Switch> with TickerProviderStateMixin {
} }
class _SwitchRenderObjectWidget extends LeafRenderObjectWidget { class _SwitchRenderObjectWidget extends LeafRenderObjectWidget {
_SwitchRenderObjectWidget({ const _SwitchRenderObjectWidget({
Key key, Key key,
this.value, this.value,
this.activeColor, this.activeColor,
......
...@@ -8,7 +8,7 @@ import 'package:flutter/material.dart'; ...@@ -8,7 +8,7 @@ import 'package:flutter/material.dart';
import 'debug.dart'; import 'debug.dart';
class _AccountPictures extends StatelessWidget { class _AccountPictures extends StatelessWidget {
_AccountPictures({ const _AccountPictures({
Key key, Key key,
this.currentAccountPicture, this.currentAccountPicture,
this.otherAccountsPictures, this.otherAccountsPictures,
...@@ -49,7 +49,7 @@ class _AccountPictures extends StatelessWidget { ...@@ -49,7 +49,7 @@ class _AccountPictures extends StatelessWidget {
} }
class _AccountDetails extends StatelessWidget { class _AccountDetails extends StatelessWidget {
_AccountDetails({ const _AccountDetails({
Key key, Key key,
@required this.accountName, @required this.accountName,
@required this.accountEmail, @required this.accountEmail,
...@@ -132,7 +132,7 @@ class UserAccountsDrawerHeader extends StatefulWidget { ...@@ -132,7 +132,7 @@ class UserAccountsDrawerHeader extends StatefulWidget {
/// Creates a material design drawer header. /// Creates a material design drawer header.
/// ///
/// Requires one of its ancestors to be a [Material] widget. /// Requires one of its ancestors to be a [Material] widget.
UserAccountsDrawerHeader({ const UserAccountsDrawerHeader({
Key key, Key key,
this.decoration, this.decoration,
this.margin: const EdgeInsets.only(bottom: 8.0), this.margin: const EdgeInsets.only(bottom: 8.0),
......
...@@ -26,7 +26,7 @@ void main() { ...@@ -26,7 +26,7 @@ void main() {
}, },
itemBuilder: (BuildContext context) { itemBuilder: (BuildContext context) {
return <PopupMenuItem<int>>[ return <PopupMenuItem<int>>[
new PopupMenuItem<int>( const PopupMenuItem<int>(
value: 1, value: 1,
child: const Text('One') child: const Text('One')
) )
......
...@@ -13,10 +13,10 @@ void main() { ...@@ -13,10 +13,10 @@ void main() {
testWidgets('LinearProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async { testWidgets('LinearProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
new Center( const Center(
child: new SizedBox( child: const SizedBox(
width: 200.0, width: 200.0,
child: new LinearProgressIndicator(value: 0.0) child: const LinearProgressIndicator(value: 0.0)
) )
) )
); );
...@@ -24,10 +24,10 @@ void main() { ...@@ -24,10 +24,10 @@ void main() {
testWidgets('LinearProgressIndicator(value: null) can be constructed', (WidgetTester tester) async { testWidgets('LinearProgressIndicator(value: null) can be constructed', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
new Center( const Center(
child: new SizedBox( child: const SizedBox(
width: 200.0, width: 200.0,
child: new LinearProgressIndicator(value: null) child: const LinearProgressIndicator(value: null)
) )
) )
); );
...@@ -35,24 +35,24 @@ void main() { ...@@ -35,24 +35,24 @@ void main() {
testWidgets('CircularProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async { testWidgets('CircularProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
new Center( const Center(
child: new CircularProgressIndicator(value: 0.0) child: const CircularProgressIndicator(value: 0.0)
) )
); );
}); });
testWidgets('CircularProgressIndicator(value: null) can be constructed', (WidgetTester tester) async { testWidgets('CircularProgressIndicator(value: null) can be constructed', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
new Center( const Center(
child: new CircularProgressIndicator(value: null) child: const CircularProgressIndicator(value: null)
) )
); );
}); });
testWidgets('LinearProgressIndicator causes a repaint when it changes', (WidgetTester tester) async { testWidgets('LinearProgressIndicator causes a repaint when it changes', (WidgetTester tester) async {
await tester.pumpWidget(new ListView(children: <Widget>[new LinearProgressIndicator(value: 0.0)])); await tester.pumpWidget(new ListView(children: <Widget>[const LinearProgressIndicator(value: 0.0)]));
final List<Layer> layers1 = tester.layers; final List<Layer> layers1 = tester.layers;
await tester.pumpWidget(new ListView(children: <Widget>[new LinearProgressIndicator(value: 0.5)])); await tester.pumpWidget(new ListView(children: <Widget>[const LinearProgressIndicator(value: 0.5)]));
final List<Layer> layers2 = tester.layers; final List<Layer> layers2 = tester.layers;
expect(layers1, isNot(equals(layers2))); expect(layers1, isNot(equals(layers2)));
}); });
......
...@@ -25,7 +25,7 @@ void main() { ...@@ -25,7 +25,7 @@ void main() {
key: popupMenuButtonKey, key: popupMenuButtonKey,
itemBuilder: (BuildContext context) { itemBuilder: (BuildContext context) {
return <PopupMenuItem<String>>[ return <PopupMenuItem<String>>[
new PopupMenuItem<String>(child: const Text('menuItem')) const PopupMenuItem<String>(child: const Text('menuItem'))
]; ];
} }
), ),
...@@ -71,7 +71,7 @@ void main() { ...@@ -71,7 +71,7 @@ void main() {
key: popupMenuButtonKey, key: popupMenuButtonKey,
itemBuilder: (BuildContext context) { itemBuilder: (BuildContext context) {
return <PopupMenuItem<String>>[ return <PopupMenuItem<String>>[
new PopupMenuItem<String>(child: const Text('menuItem')) const PopupMenuItem<String>(child: const Text('menuItem'))
]; ];
} }
), ),
......
...@@ -9,7 +9,7 @@ void main() { ...@@ -9,7 +9,7 @@ void main() {
testWidgets('TickerMode', (WidgetTester tester) async { testWidgets('TickerMode', (WidgetTester tester) async {
final Widget widget = new TickerMode( final Widget widget = new TickerMode(
enabled: false, enabled: false,
child: new LinearProgressIndicator() child: const LinearProgressIndicator()
); );
expect(widget.toString, isNot(throwsException)); expect(widget.toString, isNot(throwsException));
...@@ -19,14 +19,14 @@ void main() { ...@@ -19,14 +19,14 @@ void main() {
await tester.pumpWidget(new TickerMode( await tester.pumpWidget(new TickerMode(
enabled: true, enabled: true,
child: new LinearProgressIndicator() child: const LinearProgressIndicator()
)); ));
expect(tester.binding.transientCallbackCount, 1); expect(tester.binding.transientCallbackCount, 1);
await tester.pumpWidget(new TickerMode( await tester.pumpWidget(new TickerMode(
enabled: false, enabled: false,
child: new LinearProgressIndicator() child: const LinearProgressIndicator()
)); ));
expect(tester.binding.transientCallbackCount, 0); expect(tester.binding.transientCallbackCount, 0);
...@@ -34,7 +34,7 @@ void main() { ...@@ -34,7 +34,7 @@ void main() {
testWidgets('Navigation with TickerMode', (WidgetTester tester) async { testWidgets('Navigation with TickerMode', (WidgetTester tester) async {
await tester.pumpWidget(new MaterialApp( await tester.pumpWidget(new MaterialApp(
home: new LinearProgressIndicator(), home: const LinearProgressIndicator(),
routes: <String, WidgetBuilder>{ routes: <String, WidgetBuilder>{
'/test': (BuildContext context) => const Text('hello'), '/test': (BuildContext context) => const 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