PaddingValues¶
data class PaddingValues(
val left: Int = 0,
val right: Int = 0,
val top: Int = 0,
val bottom: Int = 0
)
Holds the four-sided padding values used by PaddingModifier.
Constructors¶
PaddingValues¶
Properties¶
bottom¶
left¶
right¶
top¶
Functions¶
getOffset¶
fun getOffset(): IntCoordinates
Returns the top-left corner offset (left, top) as an IntCoordinates.
plus¶
operator fun plus(other: PaddingValues): PaddingValues