Toggle flags for showing/hiding UI elements in the player view.

interface RNViewConfigToggles {
    isAccessibilityFocusPreferred: boolean;
    isAnnotationsButtonHidden?: boolean;
    isAutoPlayNextEnabled?: boolean;
    isCloseButtonHidden?: boolean;
    isCloseButtonIconChevron: boolean;
    isDebug?: boolean;
    isEpgButtonHidden?: boolean;
    isFavourite: boolean;
    isFavouriteButtonHidden?: boolean;
    isFullscreenButtonHidden?: boolean;
    isInfoButtonHidden?: boolean;
    isSettingsButtonHidden?: boolean;
    isShareButtonHidden?: boolean;
    isStatsButtonHidden?: boolean;
    isWatchFromStartMarkerEnabled?: boolean;
    isWatchlistButtonHidden?: boolean;
}

Properties

isAccessibilityFocusPreferred: boolean

Prefer accessibility focus to avoid conflicts in text to speach mode(TTS).

isAnnotationsButtonHidden?: boolean

Hide the annotations button (TV platforms).

isAutoPlayNextEnabled?: boolean

Enable automatic playback of next item in playlist.

isCloseButtonHidden?: boolean

Hide the close button.

isCloseButtonIconChevron: boolean

Use chevron icon for the close button instead of default icon.

isDebug?: boolean

Enable debug mode for the player.

isEpgButtonHidden?: boolean

Hide the EPG (Electronic Program Guide) button (TV platforms).

isFavourite: boolean

Whether the current item is marked as favourite. Changes button icon state (TV platforms).

isFavouriteButtonHidden?: boolean

Hide the favourite button. (TV platforms).

isFullscreenButtonHidden?: boolean

Hide the fullscreen button.

isInfoButtonHidden?: boolean

Hide the info button. (TV platforms).

isSettingsButtonHidden?: boolean

Hide the settings button.

isShareButtonHidden?: boolean

Hide the share button.

isStatsButtonHidden?: boolean

Hide the stats button.

isWatchFromStartMarkerEnabled?: boolean

Toggle "watch from start" marker functionality.

isWatchlistButtonHidden?: boolean

Hide the watchlist button (TV platforms).