scrollLeft property

double get scrollLeft

Implementation

double get scrollLeft {
  if (scrollControllerX != null && scrollControllerX!.hasClients) {
    return scrollControllerX!.position.pixels;
  }
  return 0.0;
}
set scrollLeft (double value)

Implementation

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