Alex
composed { pointerInput(Unit) { coroutineScope { while (true) { val pointerId = awaitPointerEventScope { awaitFirstDown().id } awaitPointerEventScope { horizontalDrag(pointerId) { ...
Zoltan Demant
.pointerInput(Unit) { detectDragGestures { change, (x, y) -> change.consumeAllChanges() // Some drag stuff } } .clickable( onClick = { // Some click stuff } )
Colton Idle
A modern programming language that makes developers happier.