GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeWidgetItemStyleOverrides - Android

BlazeWidgetItemStyleOverrides is a data class used to define custom style overrides for a specific item within a Blaze widget. It allows customization of various visual aspects of an item.

Properties

statusIndicator

var statusIndicator: BlazeWidgetItemStatusIndicatorStyle?

An optional BlazeWidgetItemStatusIndicatorStyle used to override the default appearance of the item's status indicator. If null, the default style is applied.

imageBorder

var imageBorder: BlazeWidgetItemImageContainerBorderStyle?

An optional BlazeWidgetItemImageContainerBorderStyle used to override the default border appearance around the item's image. If null, the default style is applied.

badge

var badge: BlazeWidgetItemBadgeStyle?

An optional BlazeWidgetItemBadgeStyle used to override the default appearance of the item's badge. If null, the default style is applied.

Initialization:

data class BlazeWidgetItemStyleOverrides(
    var statusIndicator: BlazeWidgetItemStatusIndicatorStyle? = null,
    var imageBorder: BlazeWidgetItemImageContainerBorderStyle? = null,
    var badge: BlazeWidgetItemBadgeStyle? = null
)

Did this page help you?