Gesture Config
data class GestureConfig(val panXEnabled: Boolean = false, val panYEnabled: Boolean = false, val panXConsumptionEnabled: Boolean = true, val panYConsumptionEnabled: Boolean = true, val zoomXEnabled: Boolean = false, val zoomYEnabled: Boolean = false, val independentZoomEnabled: Boolean = false, val panFlingAnimationEnabled: Boolean = true)
Configuration for gesture handling, including settings for panning and zooming and their use
Properties
Link copied to clipboard
Link copied to clipboard
Whether independent zoom (zooming on X and Y axes separately) is allowed
Link copied to clipboard
Link copied to clipboard
Whether the inertial pan fling animation is enabled
Link copied to clipboard
Whether the pan gesture on the X-axis should be consumed. Has no effect for js
and wasmJs
Link copied to clipboard
Whether the pan gesture is enabled for the X-axis
Link copied to clipboard
Whether the pan gesture on the Y-axis should be consumed. Has no effect for js
and wasmJs
Link copied to clipboard
Whether the pan gesture is enabled for the Y-axis
Link copied to clipboard
Link copied to clipboard
Whether the zoom gesture is enabled for the X-axis
Link copied to clipboard
Whether the zoom gesture is enabled for the Y-axis