GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

The player seek bar style

Properties

isVisible

isVisible?: boolean

Indicates whether the seek bar is visible.

backgroundColor

backgroundColor?: string // HEX RGBA

The background color of the seek bar.

progressColor

progressColor?: string //HEX RGBA

The progress color of the seek bar.

height

height?: number //HEX RGBA

The height of the seek bar.

cornerRadius

cornerRadius?: number

The corner radius of the seek bar thumb.

thumbColor

thumbColor?: string //HEX RGBA

The color of the seek bar thumb.

thumbImage

thumbImage?: BlazeImage = { }

The custom image for the seek bar thumb

thumbSize

thumbSize?: number

Indicates the size of the thumb.

isThumbVisible

isThumbVisible?: boolean

Indicates of the thumb is visible when video is playing.

Initialization

Initializes a new instance of BlazeSeekBarStyle

interface BlazeSeekBarStyle {
  isVisible?: boolean;
  backgroundColor?: string; //Hex,  
  progressColor?: string; //Hex,
  height?: number;
  cornerRadius?: number;
  thumbColor?: string; //Hex,
  thumbImage?: BlazeImage;
  thumbSize?: number;
  isThumbVisible?: boolean;
}

Did this page help you?