🌈 Create new beautiful Compose Gradients with our new wesite ->
Function

awaitLongPressOrCancellation

Waits for a long press by examining pointerId.

awaitLongPressOrCancellation

Source set: Common
public suspend fun AwaitPointerEventScope.awaitLongPressOrCancellation(
    pointerId: PointerId
): PointerInputChange?

Waits for a long press by examining pointerId.

If that pointerId is raised (that is, the user lifts their finger), but another finger (PointerId) is down at that time, another pointer will be chosen as the lead for the gesture, and if none are down, null is returned.

Example Usage:

Return

The latest PointerInputChange associated with a long press or null if all pointers are raised before a long press is detected or another gesture consumed the change.