Unverified Commit 3118ae19 authored by Konstantin Scheglov's avatar Konstantin Scheglov Committed by GitHub

Fix new prefer_const_constructors after analyzer fix. (#39917)

parent 02344c9c
...@@ -42,7 +42,7 @@ class _ImageLoaderState extends State<ImageLoader> { ...@@ -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(
......
...@@ -5,7 +5,7 @@ ...@@ -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),
)); ));
} }
...@@ -184,8 +184,8 @@ class _FocusDemoState extends State<FocusDemo> { ...@@ -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(),
......
...@@ -82,8 +82,8 @@ class _HoverDemoState extends State<HoverDemo> { ...@@ -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(
......
...@@ -139,7 +139,7 @@ class FruitPage extends StatelessWidget { ...@@ -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',
......
...@@ -26,8 +26,7 @@ void main() { ...@@ -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, //
......
...@@ -652,10 +652,10 @@ void main() { ...@@ -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'))
), ),
), ),
); );
......
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