scrollTop property
Implementation
double get scrollTop {
KrakenScrollable? scrollableY = _getScrollable(Axis.vertical);
if (scrollableY != null) {
return scrollableY.position?.pixels ?? 0;
}
return 0.0;
}
Implementation
set scrollTop(double value) {
_scrollTo(y: value);
}