GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeStoryPlayerTitleTextStyle - React Native

The BlazeStoryPlayerTitleTextStyle class represents the style of title in a story.

Properties

font

font?: BlazeFont = { ... }

fontName used by iOS, fontFileName used by android.

textColor

textColor?: string //Hex RGBA

The color of the text in Hex.

textSize

textSize?: number; //Only for Android

The size of the text.

isVisible

isVisible?: boolean

A flag indicates whether the title is visible.

Initialization

interface BlazeStoryPlayerTitleTextStyle {
  font?: BlazeFont;
  textSize?: number;
  textColor?: string;
  isVisible?: boolean;
}

Did this page help you?