ImageRepeat enum
How to paint any portions of a box not covered by an image.
Constants
- noRepeat → const ImageRepeat
-
Leave uncovered portions of the box transparent.
const ImageRepeat(3)
- repeat → const ImageRepeat
-
Repeat the image in both the x and y directions until the box is filled.
const ImageRepeat(0)
- repeatX → const ImageRepeat
-
Repeat the image in the x direction until the box is filled horizontally.
const ImageRepeat(1)
- repeatY → const ImageRepeat
-
Repeat the image in the y direction until the box is filled vertically.
const ImageRepeat(2)
-
values
→ const List<
ImageRepeat> -
A constant List of the values in this enum, in order of their declaration.
const List<
ImageRepeat>
Properties
Methods
-
toString(
) → String -
Returns a string representation of this object.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited