Padding

data class Padding(val left: Int, val top: Int, val right: Int, val bottom: Int)

Represents padding values with individual left, top, right, and bottom properties.

This class is used to define padding around a certain area or component.

Constructors

Link copied to clipboard
constructor(left: Int, top: Int, right: Int, bottom: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bottom: Int

Padding value for the bottom side.

Link copied to clipboard
val left: Int

Padding value for the left side.

Link copied to clipboard
val right: Int

Padding value for the right side.

Link copied to clipboard
val top: Int

Padding value for the top side.