RenderingStrategy enum
The strategy used to render an SVG widget.
Retained for source compatibility with the flutter_svg-style API. The
renderer in full_svg_flutter always paints vector content directly to the
canvas and caches the result in a repaint boundary, so this value now acts
only as a hint and does not change rendering behaviour.
Values
- picture → const RenderingStrategy
-
Paint the SVG as vector content.
- raster → const RenderingStrategy
-
Rasterize the SVG.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
RenderingStrategy> - A constant List of the values in this enum, in order of their declaration.