@zezosoft/zezo-ott-react-native-video-player
Version:
Production-ready React Native OTT video player library for Android & iOS. Features: playlists, seasons, auto-next playback, subtitles (SRT/VTT), custom theming, analytics tracking, fullscreen mode, gesture controls, ads player (pre-roll/mid-roll/post-roll
22 lines (19 loc) • 602 B
text/typescript
import { createRef } from 'react';
import type { VideoRef } from 'react-native-video';
import type { AdsPlayerRef } from '../../../AdsPlayer/AdsPlayer';
export const hideControlsStyles = {
hideForward: true,
hideDuration: true,
hideFullscreen: true,
hidePlayPause: true,
hideNavigationBarOnFullScreenMode: true,
hideNotificationBarOnFullScreenMode: true,
hideNext: true,
hidePosition: true,
hidePrevious: true,
hideRewind: true,
hideSeekBar: true,
hideSettingButton: true,
};
export const videoRef = createRef<VideoRef>();
export const adVideoRef = createRef<AdsPlayerRef>();