GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeStoryPlayerChipStyle - React Native

The BlazeStoryPlayerChipStyle class represents the style of a chip used in a story.

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 BlazeStoryPlayerChipStyle {
  titlePadding?: BlazeMargins;
  text?: string;
  textColor?: string;
  backgroundColor?: string;
  isVisible?: boolean;
}

Did this page help you?