SvgImage.asset constructor

const SvgImage.asset(
  1. String? asset, {
  2. Key? key,
  3. Alignment? alignment = Alignment.center,
  4. BoxFit? fit = BoxFit.contain,
  5. double? width,
  6. double? height,
  7. WidgetBuilder? placeholderBuilder,
  8. String? semanticsLabel,
  9. bool? excludeFromSemantics = false,
})

Instantiates a widget rendering an SVG picture from an AssetBundle.

The key will be derived from the assetName, package, and bundle arguments. The package argument must be non-null when displaying an SVG from a package and null otherwise.

Either the width and height arguments should be specified, or the widget should be placed in a context that sets tight layout constraints. Otherwise, the image dimensions will change as the image is loaded, which will result in ugly layout changes.

Implementation

const SvgImage.asset(
  this.asset, {
  super.key,
  this.alignment = Alignment.center,
  this.fit = BoxFit.contain,
  this.width,
  this.height,
  this.placeholderBuilder,
  this.semanticsLabel,
  this.excludeFromSemantics = false,
}) : file = null,
     bytes = null;