scrollY method

dynamic scrollY(
  1. double top
)

Implementation

scrollY(double top) {
  // allow scrolling to 0 (edge) as well
  if (top >= 0 && fy != top) {
    scrollXY(fx, top);
  }
}