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