SvgImage.bytes constructor
Instantiates a widget rendering an SVG picture from an Uint8List.
Either the width
and height
arguments should be specified, or the
widget should be placed in a context setting layout constraints tightly.
Otherwise, the image dimensions will change as the image is loaded, which
will result in ugly layout changes.
Implementation
const SvgImage.bytes(
this.bytes, {
super.key,
this.alignment = Alignment.center,
this.fit = BoxFit.cover,
this.width,
this.height,
this.placeholderBuilder,
this.semanticsLabel,
this.excludeFromSemantics = false,
}) : file = null,
asset = null;