Function

panBy

Pan without animation by a offset Offset in pixels and suspend until it's set.

panBy

Deprecated

Maintained for binary compatibility

Source set: Common
suspend fun TransformableState.panBy(offset: Offset) =
    panBy(offset = offset, centroid = Offset.Unspecified)

Pan without animation by a offset Offset in pixels and suspend until it's set.

Parameters

offset offset in pixels by which to pan

panBy

Source set: Common
suspend fun TransformableState.panBy(offset: Offset, centroid: Offset = Offset.Unspecified) =
    transform {
        transformByWithCentroid(
            centroid = centroid,
            zoomChange = 1f,
            panChange = offset,
            rotationChange = 0f,
        )
    }

Pan without animation by a offset Offset in pixels and suspend until it's set.

Parameters

offset offset in pixels by which to pan
centroid the Offset around which the pan should occur, if any. The default value is Offset.Unspecified, which leaves the behavior up to the implementation of the TransformableState.

Last updated: