GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeWidgetItemStyleOverrides - React Native

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

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

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

badge?: BlazeWidgetItemBadgeStyle

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

Initialization:

interface BlazeWidgetItemStyleOverrides {
    statusIndicator?: BlazeWidgetItemStatusIndicatorStyle;
    imageBorder?: BlazeWidgetItemImageContainerBorderStyle;
    badge?: BlazeWidgetItemBadgeStyle;
};

Did this page help you?