interface NativeTouchEvent {
    changedTouches: NativeTouchEvent[];
    force?: number;
    identifier: string;
    locationX: number;
    locationY: number;
    pageX: number;
    pageY: number;
    target: string;
    timestamp: number;
    touches: NativeTouchEvent[];
}

Properties

changedTouches: NativeTouchEvent[]

Array of all touch events that have changed since the last event

force?: number

3D Touch reported force

Platform

ios

identifier: string

The ID of the touch

locationX: number

The X position of the touch, relative to the element

locationY: number

The Y position of the touch, relative to the element

pageX: number

The X position of the touch, relative to the screen

pageY: number

The Y position of the touch, relative to the screen

target: string

The node id of the element receiving the touch event

timestamp: number

A time identifier for the touch, useful for velocity calculation

touches: NativeTouchEvent[]

Array of all current touches on the screen