GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeMomentsPlayerChipStyle - React Native

The BlazeMomentsPlayerChipStyle class represents the style of a chip used in a moment.

Properties

titlePadding

titlePadding?: BlazeMargins = { }

The padding for the title within the chip.

text

text?: string;

The text displayed on the chip.

textColor

textColor?: string //Hex 

The color of the text.

backgroundColor

backgroundColor?: string  //Hex 

The background color of the chip.

isVisible

isVisible?: boolean

A flag indicates whether the chip is visible.

Initialization

interface BlazeMomentsPlayerChipStyle {
  titlePadding?: BlazeMargins;
  text?: string;
  textColor?: string; //Hex
  backgroundColor?: string; //Hex
  isVisible?: boolean;
}

Did this page help you?