interface SeekBarProps {
    chapterMarkers?: ((index?) => ReactNode);
    sliderContainerStyle?: ViewStyle;
    sliderMaximumTrackStyle?: ViewStyle;
    sliderMinimumTrackStyle?: ViewStyle;
    style?: StyleProp<ViewStyle>;
    testID?: string;
}

Properties

chapterMarkers?: ((index?) => ReactNode)

Optional

Type declaration

    • (index?): ReactNode
    • Parameters

      • Optional index: number

      Returns ReactNode

sliderContainerStyle?: ViewStyle

Optional style applied to the SeekBar container.

sliderMaximumTrackStyle?: ViewStyle

Optional style applied to the track right of the thumb.

sliderMinimumTrackStyle?: ViewStyle

Optional style applied to the track left of the thumb.

Optional style applied to the SeekBar.

testID?: string

An id used to locate this view in end-to-end tests.

Default

'seek-bar'