SvgImage.asset constructor
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;