interface TimeLabelProps {
    scrubTime?: number;
    showDuration: boolean;
    style?: StyleProp<TextStyle>;
}

Properties

scrubTime?: number

The playhead position to which the user might seek. Use this property to pass slider values before the actual (debounced) seek happens.

showDuration: boolean

Whether to show the duration of the player.

The style overrides.