Information to display in the now playing interface.

interface RNNowPlaying {
    channelLogoUrl?: string;
    dateFormat?: string;
    endDate?: number;
    episodeInfo?: string;
    startDate?: number;
    title?: string;
}

Properties

channelLogoUrl?: string

URL of the channel logo to display.

dateFormat?: string

Format string for displaying dates.

Example

"MMM d, yyyy" | "dd/MM/yyyy"
endDate?: number

End date/time for the VLL channel program (timestamp in seconds).

episodeInfo?: string

Episode information (e.g., "S01E01" or "Episode 1").

startDate?: number

Start date/time for the VLL channel program (timestamp in seconds).

title?: string

Title of the currently playing VLL channel program.