UNPKG

@zezosoft/zezo-ott-react-native-video-player

Version:

React Native OTT Video Player for Android & iOS. Supports playlists, seasons, auto-next playback, subtitles, theming, analytics, fullscreen mode, and custom controls. 🚀 Powered by ZezoSoft.

19 lines (14 loc) • 328 B
/** * @author Naresh Dhamu * @lastModified Fri 08 Aug 2025 at 08:44 PM */ import { Platform } from 'react-native'; class PlatformSelector { public isAndroid(): boolean { return Platform.OS === 'android'; } public isIOS(): boolean { return Platform.OS === 'ios'; } } export default new PlatformSelector();