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?: BlazeWidgetItemStatusIndicatorStyleAn optional BlazeWidgetItemStatusIndicatorStyle used to override the default appearance of the item's status indicator. If null, the default style is applied.
imageBorder
imageBorder?: BlazeWidgetItemImageContainerBorderStyleAn optional BlazeWidgetItemImageContainerBorderStyle used to override the default border appearance around the item's image. If null, the default style is applied.
badge
badge?: BlazeWidgetItemBadgeStyleAn 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;
};Updated 11 days ago
Did this page help you?
