Padding

data class Padding(val top: Int = 0, val bottom: Int = 0, val start: Int = 0, val end: Int = 0)

Constructors

Link copied to clipboard
constructor(padding: Int)
constructor(top: Int = 0, bottom: Int = 0, start: Int = 0, end: Int = 0)

Properties

Link copied to clipboard
val bottom: Int = 0

Bottom padding in dp.

Link copied to clipboard
val end: Int = 0

End padding in dp.

Link copied to clipboard
val start: Int = 0

Start padding in dp.

Link copied to clipboard
val top: Int = 0

Top padding in dp.