GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeMomentsPlayerSeekBarStyle - React Native

The player seek bar prop, typed as BlazeMomentsPlayerSeekBarStyle, dictates the style of the seek bar in the Moments player component. Tailor it to match your Moments player UI.

Properties

isVisible

isVisible?: boolean

Indicates whether the seek bar is visible.

bottomSpacing

bottomSpacing?: number

Indicates the bottom spacing / margin of the seek bar.

horizontalSpacing

horizontalSpacing?: number

Indicates the horizontal spacing / margin of the seek bar.

playingState

playingState?: BlazeSeekBarStyle

Indicates the style of the seek bar when video is playing.

pausedState

pausedState?: BlazeSeekBarStyle

indicates the style of the seek bar when video is paused.

Initialization

Initializes a new instance of BlazeMomentsPlayerSeekBarStyle

interface BlazeMomentsPlayerSeekBarStyle {
  isVisible?: boolean;
  playingState?: BlazeSeekBarStyle;
  pausedState?: BlazeSeekBarStyle;
  horizontalSpacing?: number;
  bottomSpacing?: number;
}

Did this page help you?