# Touch Event
Name
Bubble Supported
Description
onTouch(callback: (event?: TouchEvent) => void)
Yes
Called when a touch event occurs. For details about the event parameters, see TouchEvent.
Type
type
TouchType
Type of a touch event.
touches
Array<TouchObject>
All finger information.
changedTouches
Finger information changed.
timestamp
number
Timestamp of the event.
API
stopPropagation(): void
Stops the event from bubbling upwards or downwards.
id
Unique identifier of a finger.
screenX
X coordinate of the touch point relative to the left edge of the screen.
screenY
Y coordinate of the touch point relative to the upper edge of the device screen.
x
X coordinate of the touch point relative to the left edge of the element being touched.
y
Y coordinate of the touch point relative to the upper edge of the element being touched.
Down
A finger is pressed.
Up
A finger is lifted.
Move
A finger moves on the screen in pressed state.
Cancel
A touch event is canceled.