Documentation

type UIScrollView​.ScrollEventData

The data structure contained by each UIScrollView.ScrollEvent.

type ScrollEventData = {
yOffset: number;
xOffset: number;
horizontalVelocity: number;
verticalVelocity: number;
scrolledDown?: boolean;
scrolledUp?: boolean;
scrolledHorizontalStart?: boolean;
scrolledHorizontalEnd?: boolean;
atTop?: boolean;
atBottom?: boolean;
atHorizontalStart?: boolean;
atHorizontalEnd?: boolean;
};

Notes

Instance members

Related