How to align the image within its bounds.
Source
FractionalOffset get alignment => _alignment;
Source
set alignment (FractionalOffset value) {
if (value == _alignment)
return;
_alignment = value;
markNeedsPaint();
}
How to align the image within its bounds.
FractionalOffset get alignment => _alignment;
set alignment (FractionalOffset value) {
if (value == _alignment)
return;
_alignment = value;
markNeedsPaint();
}