scrollLeft property
double
get
scrollLeft
Implementation
double get scrollLeft {
KrakenScrollable? scrollableX = _getScrollable(Axis.horizontal);
if (scrollableX != null) {
return scrollableX.position?.pixels ?? 0;
}
return 0.0;
}
set
scrollLeft
(double value)
Implementation
set scrollLeft(double value) {
_scrollTo(x: value);
}