Fix new prefer_const_constructors after analyzer fix. (#39917)

This commit is contained in:
Konstantin Scheglov 2019-09-05 19:59:24 -07:00 committed by GitHub
parent 02344c9c81
commit 3118ae19ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 12 deletions

View File

@ -42,7 +42,7 @@ class _ImageLoaderState extends State<ImageLoader> {
void initState() { void initState() {
// This is not an image, but we don't care since we're using a faked // This is not an image, but we don't care since we're using a faked
// http client. // http client.
final NetworkImage image = NetworkImage('https://github.com/flutter/flutter'); const NetworkImage image = NetworkImage('https://github.com/flutter/flutter');
final ImageStream stream = image.resolve(ImageConfiguration.empty); final ImageStream stream = image.resolve(ImageConfiguration.empty);
ImageStreamListener listener; ImageStreamListener listener;
listener = ImageStreamListener( listener = ImageStreamListener(

View File

@ -5,7 +5,7 @@
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
void main() { void main() {
runApp(Center( runApp(const Center(
child: const Text('Hello, World', textDirection: TextDirection.ltr), child: Text('Hello, World', textDirection: TextDirection.ltr),
)); ));
} }

View File

@ -184,8 +184,8 @@ class _FocusDemoState extends State<FocusDemo> {
decoration: InputDecoration(labelText: 'Enter Text', filled: true), decoration: InputDecoration(labelText: 'Enter Text', filled: true),
), ),
), ),
Padding( const Padding(
padding: const EdgeInsets.all(8.0), padding: EdgeInsets.all(8.0),
child: TextField( child: TextField(
decoration: InputDecoration( decoration: InputDecoration(
border: OutlineInputBorder(), border: OutlineInputBorder(),

View File

@ -82,8 +82,8 @@ class _HoverDemoState extends State<HoverDemo> {
decoration: InputDecoration(labelText: 'Enter Text', filled: true), decoration: InputDecoration(labelText: 'Enter Text', filled: true),
), ),
), ),
Padding( const Padding(
padding: const EdgeInsets.all(8.0), padding: EdgeInsets.all(8.0),
child: TextField( child: TextField(
autofocus: false, autofocus: false,
decoration: InputDecoration( decoration: InputDecoration(

View File

@ -139,7 +139,7 @@ class FruitPage extends StatelessWidget {
padding: const EdgeInsets.symmetric(vertical: 16), padding: const EdgeInsets.symmetric(vertical: 16),
child: Row( child: Row(
children: <Widget>[ children: <Widget>[
CircleAvatar( const CircleAvatar(
backgroundImage: ExactAssetImage( backgroundImage: ExactAssetImage(
'people/square/trevor.png', 'people/square/trevor.png',
package: 'flutter_gallery_assets', package: 'flutter_gallery_assets',

View File

@ -26,8 +26,7 @@ void main() {
}); });
testWidgets('Color filter - sepia', (WidgetTester tester) async { testWidgets('Color filter - sepia', (WidgetTester tester) async {
// TODO(dnfield): This should be const. https://github.com/dart-lang/sdk/issues/37503 const ColorFilter sepia = ColorFilter.matrix(<double>[
final ColorFilter sepia = ColorFilter.matrix(<double>[
0.39, 0.769, 0.189, 0, 0, // 0.39, 0.769, 0.189, 0, 0, //
0.349, 0.686, 0.168, 0, 0, // 0.349, 0.686, 0.168, 0, 0, //
0.272, 0.534, 0.131, 0, 0, // 0.272, 0.534, 0.131, 0, 0, //

View File

@ -652,10 +652,10 @@ void main() {
} }
await tester.pumpWidget( await tester.pumpWidget(
Directionality( const Directionality(
textDirection: TextDirection.ltr, textDirection: TextDirection.ltr,
child: Center( child: Center(
child: const Text('Hello World', key: ValueKey<String>('Text')) child: Text('Hello World', key: ValueKey<String>('Text'))
), ),
), ),
); );