GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeFirstTimeSlideTextStyle - React Native

The BlazeFirstTimeSlideTextStyle interface represents the text content used in the first-time slide's instructions and other text elements.

Properties

text

text?: string

The actual text content.

font

font?: BlazeFont

The font used for displaying the text.

textColor

textColor?: BlazeColor = { ... }

The color of the text.

Initialization

Initializes a BlazeFirstTimeSlideText instance.

interface BlazeFirstTimeSlideTextStyle {
  text?: string;
  font?: BlazeFont;
  textColor?: BlazeColor;
  textSize?: number;
}

Did this page help you?