Class

UiMediaScope.PointerPrecision

Describes the precision of the available pointing devices.

Source set: Common
@ExperimentalMediaQueryApi
    value class PointerPrecision private constructor(private val description: String)

Describes the precision of the available pointing devices.

Companion Object

Properties

Source set: Common
val Fine = PointerPrecision("Fine")

Represents a pointing device with high precision, such as a mouse, trackpad, or stylus.

Source set: Common
val Coarse = PointerPrecision("Coarse")

Represents a pointing device with limited precision, such as a touchscreen.

Source set: Common
val Blunt = PointerPrecision("Blunt")

Represents a pointing device with low precision, such as a joystick.

Source set: Common
val None = PointerPrecision("None")

Indicates that no pointing device is available.

Last updated: