GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeMomentsPlayerFirstTimeSlideStyle - React Native

The BlazeMomentsPlayerFirstTimeSlideStyle class represents the style configuration for the first-time slide in Blaze moments.

For the concept and platform support, see Viewer onboarding slide.

Properties

show

show?: boolean

Determines whether the first-time slide should be shown when a new user is detected.

cta

cta?: BlazeFirstTimeSlideCTAStyle = { }

The style configuration for the Call to Action (CTA) button.

backgroundColor

backgroundColor?: BlazeColor

The background color of the first-time slide.

Uses the BlazeColor type.

mainTitle

mainTitle?: BlazeFirstTimeSlideTextStyle

The main title text of the first-time slide.

Read more here BlazeFirstTimeSlideTextStyle

subtitle

subTitle?: BlazeFirstTimeSlideTextStyle

The subtitle text of the first-time slide.

Read more here BlazeFirstTimeSlideTextStyle

instructions

instructions: BlazeMomentsPlayerFirstTimeSlideInstructionsStyle

The instructions included in the first-time slide.

Initialization

Initializes the appearance configuration for the first-time slide in the Blaze Moments player.

interface BlazeMomentFirstTimeSlideAppearance {
  show?: boolean;
  ctaButtonStyle?: BlazeMomentFirstTimeSlideCTAStyle;
  backgroundColor?: BlazeColor;
  mainTitle?: BlazeFirstTimeSlideText;
  subTitle?: BlazeFirstTimeSlideText;
  instructions?: BlazeMomentFirstTimeSlideInstructionsList;
}

Did this page help you?