Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 777 Bytes

File metadata and controls

22 lines (16 loc) · 777 Bytes

Home > @snowplow/react-native-tracker > ScrollChangedProps

ScrollChangedProps type

Event tracked when a scroll view's scroll position changes. If screen engagement tracking is enabled, the scroll changed events will be aggregated into a screen_summary entity.

Schema: iglu:com.snowplowanalytics.mobile/scroll_changed/jsonschema/1-0-0

Signature:

export declare type ScrollChangedProps = {
    yOffset?: number;
    xOffset?: number;
    viewHeight?: number;
    viewWidth?: number;
    contentHeight?: number;
    contentWidth?: number;
};