Insets
class Insets(val top: Double = 0.0, val left: Double = 0.0, val bottom: Double = 0.0, val right: Double = 0.0)
Represents offsets from a Rectangle's boundary. Each of the 4 sides are specified independently as follows:
┌───────────────────┐
│ t │
│ ┌─────────┐ │
│ l │ │ r │
│ └─────────┘ │
│ b │
└───────────────────┘
Content copied to clipboard
The values l,t,r, and b represent the Left, Top, Right, and Bottom values for the Insets respectively.
Author
Nicholas Eddy