GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeInsets - Android

BlazeInsets is used to ensure that margins and padding are specified in a consistent manner. The class is defined as follows:

The BlazeInsets type will be exposed wherever margins or padding are needed.

data class BlazeInsets internal constructor(
    var start: BlazeDp,
    var top: BlazeDp,
    var end: BlazeDp,
    var bottom: BlazeDp,
)

Did this page help you?