Handles the UI state change when fullscreen should be entered or exited.

interface FullscreenHandler {
    isFullscreenActive: boolean;
    enterFullscreen(): void;
    exitFullscreen(): void;
}

Properties

isFullscreenActive: boolean

Indicates if the UI is currently in fullscreen mode

Methods

  • Is called by the PlayerView when the UI should enter fullscreen mode.

    Returns void

  • Is called by the PlayerView when the UI should exit fullscreen mode.

    Returns void