@@ -366,7 +366,7 @@ class Image extends StatefulWidget {
366366 this .matchTextDirection = false ,
367367 this .gaplessPlayback = false ,
368368 this .isAntiAlias = false ,
369- this .filterQuality = FilterQuality .low ,
369+ this .filterQuality = FilterQuality .medium ,
370370 });
371371
372372 /// Creates a widget that displays an [ImageStream] obtained from the network.
@@ -414,7 +414,7 @@ class Image extends StatefulWidget {
414414 this .centerSlice,
415415 this .matchTextDirection = false ,
416416 this .gaplessPlayback = false ,
417- this .filterQuality = FilterQuality .low ,
417+ this .filterQuality = FilterQuality .medium ,
418418 this .isAntiAlias = false ,
419419 Map <String , String >? headers,
420420 int ? cacheWidth,
@@ -471,7 +471,7 @@ class Image extends StatefulWidget {
471471 this .matchTextDirection = false ,
472472 this .gaplessPlayback = false ,
473473 this .isAntiAlias = false ,
474- this .filterQuality = FilterQuality .low ,
474+ this .filterQuality = FilterQuality .medium ,
475475 int ? cacheWidth,
476476 int ? cacheHeight,
477477 }) :
@@ -631,7 +631,7 @@ class Image extends StatefulWidget {
631631 this .gaplessPlayback = false ,
632632 this .isAntiAlias = false ,
633633 String ? package,
634- this .filterQuality = FilterQuality .low ,
634+ this .filterQuality = FilterQuality .medium ,
635635 int ? cacheWidth,
636636 int ? cacheHeight,
637637 }) : image = ResizeImage .resizeIfNeeded (
@@ -693,7 +693,7 @@ class Image extends StatefulWidget {
693693 this .matchTextDirection = false ,
694694 this .gaplessPlayback = false ,
695695 this .isAntiAlias = false ,
696- this .filterQuality = FilterQuality .low ,
696+ this .filterQuality = FilterQuality .medium ,
697697 int ? cacheWidth,
698698 int ? cacheHeight,
699699 }) : image = ResizeImage .resizeIfNeeded (cacheWidth, cacheHeight, MemoryImage (bytes, scale: scale)),
@@ -873,6 +873,8 @@ class Image extends StatefulWidget {
873873 /// improve the rendered image quality in this case. Pixels may be misaligned
874874 /// with the screen pixels as a result of transforms or scaling.
875875 ///
876+ /// Defaults to [FilterQuality.medium] .
877+ ///
876878 /// See also:
877879 ///
878880 /// * [FilterQuality] , the enum containing all possible filter quality
0 commit comments