Common
@ExperimentalMediaQueryApi
value class PointerPrecision private constructor(private val description: String)
Describes the precision of the available pointing devices.
Companion Object
Properties
Common
val Fine = PointerPrecision("Fine")
Represents a pointing device with high precision, such as a mouse, trackpad, or stylus.
Common
val Coarse = PointerPrecision("Coarse")
Represents a pointing device with limited precision, such as a touchscreen.
Common
val Blunt = PointerPrecision("Blunt")
Represents a pointing device with low precision, such as a joystick.
Common
val None = PointerPrecision("None")
Indicates that no pointing device is available.