Package-level declarations

Types

Link copied to clipboard
data class Constraints(val minWidth: Int = 0, val maxWidth: Int = Int.MAX_VALUE, val minHeight: Int = 0, val maxHeight: Int = Int.MAX_VALUE)

Inclusive minimum and maximum size constraints.

Link copied to clipboard
data class DoubleOffset(val x: Double, val y: Double)

An immutable finite two-dimensional coordinate or displacement.

Link copied to clipboard
data class FloatRect(val left: Float, val top: Float, val right: Float, val bottom: Float)

An immutable, thread-safe half-open rectangle with finite floating-point edges and extents.

Link copied to clipboard
data class Insets(val left: Int = 0, val top: Int = 0, val right: Int = 0, val bottom: Int = 0)

Immutable non-negative distances applied to the four sides of a rectangle.

Link copied to clipboard
data class IntOffset(val x: Int, val y: Int)

An immutable integer coordinate or displacement.

Link copied to clipboard
data class IntRect(val left: Int, val top: Int, val right: Int, val bottom: Int)

An immutable half-open integer rectangle.

Link copied to clipboard
data class IntSize(val width: Int, val height: Int)

An immutable non-negative integer extent.

Link copied to clipboard
data class LongRect(val left: Long, val top: Long, val right: Long, val bottom: Long)

An immutable half-open rectangle in a large integer content coordinate space.