SynthesizeTapGestureParameter

@Serializable
data class SynthesizeTapGestureParameter(val x: Double, val y: Double, val duration: Int? = null, val tapCount: Int? = null, val gestureSourceType: Input.GestureSourceType? = null)

Constructors

Link copied to clipboard
constructor(x: Double, y: Double, duration: Int? = null, tapCount: Int? = null, gestureSourceType: Input.GestureSourceType? = null)

Properties

Link copied to clipboard
val duration: Int? = null

Duration between touchdown and touchup events in ms (default: 50).

Link copied to clipboard

Which type of input events to be generated (default: 'default', which queries the platform for the preferred input type).

Link copied to clipboard
val tapCount: Int? = null

Number of times to perform the tap (e.g. 2 for double tap, default: 1).

Link copied to clipboard
val x: Double

X coordinate of the start of the gesture in CSS pixels.

Link copied to clipboard
val y: Double

Y coordinate of the start of the gesture in CSS pixels.