VectorImage class
Enables theming of vector graphics.
Usage:
- VectorImage.primaryColor → Interpolate this into the SVG code to use the primary color of the
this.current
theme. - VectorImage.secondaryColor → Interpolate this into the SVG code to use the secondary color of the theme.
- VectorImage.tertiaryColor → Interpolate this into the SVG code to use the tertiary color of the theme.
- VectorImage.accentColor → Interpolate this into the SVG code to use the accent color of the theme.
- VectorImage.textColor → Interpolate this into the SVG code to use the text color of the theme.
- Inheritance
-
- Object
- DiagnosticableTree
- Widget
- StatelessWidget
- VectorImage
Constructors
Properties
- alignment → Alignment
-
The alignment of the image.
final
- asset → String
-
The path to the image.
final
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- height → double?
-
The height of the image.
final
- key → Key?
-
Controls how one widget replaces another widget in the tree.
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- width → double?
-
The width of the image.
final
Methods
-
build(
BuildContext context) → Widget -
Describes the part of the user interface represented by this widget.
override
-
createElement(
) → StatelessElement -
Creates a StatelessElement to manage this widget's location in the tree.
inherited
-
debugDescribeChildren(
) → List< DiagnosticsNode> -
Returns a list of
DiagnosticsNode
objects describing this node's children.inherited -
debugFillProperties(
DiagnosticPropertiesBuilder properties) → void -
Add additional properties associated with the node.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDiagnosticsNode(
{String? name, DiagnosticsTreeStyle? style}) → DiagnosticsNode -
Returns a debug representation of the object that is used by debugging
tools and by DiagnosticsNode.toStringDeep.
inherited
-
toString(
{DiagnosticLevel minLevel = DiagnosticLevel.info}) → String -
A string representation of this object.
inherited
-
toStringDeep(
{String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a string representation of this node and its descendants.
inherited
-
toStringShallow(
{String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) → String -
Returns a one-line detailed description of the object.
inherited
-
toStringShort(
) → String -
A short, textual description of this widget.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
svg(
String code, BuildContext context) → String -
Interpolates all the theme colors into the given
code
.
Constants
- accentColor → const String
-
Interpolate this into the SVG code to use the accent color of the current theme.
"{accentcolor}"
- primaryColor → const String
-
Interpolate this into the SVG code to use the primary color of the current theme.
"{primarycolor}"
- secondaryColor → const String
-
Interpolate this into the SVG code to use the secondary color of the current theme.
"{secondarycolor}"
- tertiaryColor → const String
-
Interpolate this into the SVG code to use the tertiary color of the current theme.
"{tertiarycolor}"
- textColor → const String
-
Interpolate this into the SVG code to use the text color of the current theme.
"{textcolor}"