How to repeat this image if it doesn't fill its layout bounds.
Source
ImageRepeat get repeat => _repeat;
Source
set repeat (ImageRepeat value) {
if (value == _repeat)
return;
_repeat = value;
markNeedsPaint();
}
How to repeat this image if it doesn't fill its layout bounds.
ImageRepeat get repeat => _repeat;
set repeat (ImageRepeat value) {
if (value == _repeat)
return;
_repeat = value;
markNeedsPaint();
}