@@ -339,6 +339,10 @@ class Image extends StatefulWidget {
339
339
/// To show an image from the network or from an asset bundle, consider using
340
340
/// [Image.network] and [Image.asset] respectively.
341
341
///
342
+ /// The `scale` argument specifies the linear scale factor for drawing this
343
+ /// image at its intended size and applies to both the width and the height.
344
+ /// {@macro flutter.painting.imageInfo.scale}
345
+ ///
342
346
/// Either the [width] and [height] arguments should be specified, or the
343
347
/// widget should be placed in a context that sets tight layout constraints.
344
348
/// Otherwise, the image dimensions will change as the image is loaded, which
@@ -379,6 +383,10 @@ class Image extends StatefulWidget {
379
383
/// Otherwise, the image dimensions will change as the image is loaded, which
380
384
/// will result in ugly layout changes.
381
385
///
386
+ /// The `scale` argument specifies the linear scale factor for drawing this
387
+ /// image at its intended size and applies to both the width and the height.
388
+ /// {@macro flutter.painting.imageInfo.scale}
389
+ ///
382
390
/// All network images are cached regardless of HTTP headers.
383
391
///
384
392
/// An optional [headers] argument can be used to send custom HTTP headers
@@ -428,6 +436,10 @@ class Image extends StatefulWidget {
428
436
429
437
/// Creates a widget that displays an [ImageStream] obtained from a [File] .
430
438
///
439
+ /// The `scale` argument specifies the linear scale factor for drawing this
440
+ /// image at its intended size and applies to both the width and the height.
441
+ /// {@macro flutter.painting.imageInfo.scale}
442
+ ///
431
443
/// Either the [width] and [height] arguments should be specified, or the
432
444
/// widget should be placed in a context that sets tight layout constraints.
433
445
/// Otherwise, the image dimensions will change as the image is loaded, which
@@ -508,6 +520,10 @@ class Image extends StatefulWidget {
508
520
/// If the `bundle` argument is omitted or null, then the
509
521
/// [DefaultAssetBundle] will be used.
510
522
///
523
+ /// The `scale` argument specifies the linear scale factor for drawing this
524
+ /// image at its intended size and applies to both the width and the height.
525
+ /// {@macro flutter.painting.imageInfo.scale}
526
+ ///
511
527
/// By default, the pixel-density-aware asset resolution will be attempted. In
512
528
/// addition:
513
529
///
0 commit comments