SvgImage.bytes constructor

const SvgImage.bytes(
  1. Uint8List? bytes, {
  2. Key? key,
  3. Alignment? alignment = Alignment.center,
  4. BoxFit? fit = BoxFit.cover,
  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 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;