scrollLeft property

double scrollLeft

Implementation

double get scrollLeft {
  KrakenScrollable? scrollableX = _getScrollable(Axis.horizontal);
  if (scrollableX != null) {
    return scrollableX.position?.pixels ?? 0;
  }
  return 0.0;
}
void scrollLeft=(double value)

Implementation

set scrollLeft(double value) {
  _scrollTo(x: value);
}