Multitouch: panoramica, zoom, rotazione

Per rilevare i gesti multi-touch utilizzati per la panoramica, lo zoom e la rotazione, puoi utilizzare il modificatore transformable. Questo modificatore non trasforma automaticamente gli elementi, ma rileva solo i gesti.

@Composable
private fun TransformableSample() {
    // set up all transformation states
    var scale by remember { mutableStateOf(1f) }
    var rotation by remember { mutableStateOf(0f) }
    var offset by remember { mutableStateOf(Offset.Zero) }
    val state = rememberTransformableState { zoomChange, offsetChange, rotationChange ->
        scale *= zoomChange
        rotation += rotationChange
        offset += offsetChange
    }
    Box(
        Modifier
            // apply other transformations like rotation and zoom
            // on the pizza slice emoji
            .graphicsLayer(
                scaleX = scale,
                scaleY = scale,
                rotationZ = rotation,
                translationX = offset.x,
                translationY = offset.y
            )
            // add transformable to listen to multitouch transformation events
            // after offset
            .transformable(state = state)
            .background(Color.Blue)
            .fillMaxSize()
    )
}

Un elemento UI che risponde ai gesti multi-touch di panoramica, zoom e rotazione.

Se devi combinare lo zoom, la panoramica e la rotazione con altri gesti, puoi utilizzare il rilevatore PointerInputScope.detectTransformGestures.