GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeStoryPlayerLastUpdateTextStyle - React Native

The BlazeStoryPlayerLastUpdateTextStyle class represents the style of the last update text in the story.

Language and localization

BlazeStoryPlayerLastUpdateTextStyle does not change the language or wording of the last-update label. Use it only for appearance: font, color, size (Android), text case, and visibility.

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 //Android only

The size of the text.

textCase

textCase: BlazeTextCase

The case of the text.

isVisible

isVisible?: boolean

A flag indicates whether the it is visible.

Initialization

interface BlazeStoryPlayerLastUpdateTextStyle { 
  font?: BlazeFont;
  textColor?: string;
  textSize?: number;
  textCase?: BlazeTextCase;
  isVisible?: boolean;
}

Did this page help you?