GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeMomentsPlayerFirstTimeSlideInstructionsStyle - React Native

The BlazeMomentsPlayerFirstTimeSlideInstructionsStyle interface represents a list of instructions for navigating the first-time slide in Blaze stories player.

Properties

next

next?: BlazeFirstTimeSlideInstructionStyle;

The instruction for moving to next moment in the list.

Read more here BlazeFirstTimeSlideInstructionStyle

previous

previous?: BlazeFirstTimeSlideInstructionStyle;

The instruction for moving to previous moment in the list.

Read more here BlazeFirstTimeSlideInstructionStyle

pause

pause?: BlazeFirstTimeSlideInstructionStyle;

The instruction for pausing the Moments player.

Read more here BlazeFirstTimeSlideInstructionStyle

play

play?: BlazeFirstTimeSlideInstructionStyle

The instruction for playing the Moments player.

Read more here BlazeFirstTimeSlideInstructionStyle

Initialization

Initializes the list of instructions for navigating the first-time slide.

interface BlazeMomentsPlayerFirstTimeSlideInstructionsStyle {
  next?: BlazeFirstTimeSlideInstructionStyle;
  previous?: BlazeFirstTimeSlideInstructionStyle;
  pause?: BlazeFirstTimeSlideInstructionStyle;
  play?: BlazeFirstTimeSlideInstructionStyle;
}

Static initializers

The BlazeFirstTimeSlideInstructionStyle struct provides static initializers for creating predefined stories instructions:

next

Default values:

  • headerText:
    • text: "Go to the next video"
    • font: systemFont(Size: 22)
    • textColor: UIColor.label
  • descriptionText:
    • text: "Swipe up"
    • font: UIFont.systemFont(ofSize: 16)
    • textColor: label

previous

Default values:

  • headerText:
    • text: "Go to the previous video"
    • font: systemFont(Size: 22)
    • textColor: label
  • descriptionText:
    • text: "Swipe down"
    • font: systemFont(Size: 16)
    • textColor: label

pause

Default values:

  • headerText:
    • text: "Pause"
    • font: systemFont(ofSize: 22)
    • textColor: label
  • descriptionText:
    • text: "Tap on screen"
    • font: systemFont(ofSize: 16)
    • textColor: label

play

Default values:

  • headerText:
    • text: "Play"
    • font: systemFont (Size: 22)
    • textColor: label
  • descriptionText:
    • text: "Tap on screen"
    • font: systemFont(Size: 16)
    • textColor: label

Did this page help you?