@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.
18 lines (16 loc) • 352 B
JavaScript
;
/**
* @author Naresh Dhamu
* @lastModified Fri 08 Aug 2025 at 08:44 PM
*/
import { Platform } from 'react-native';
class PlatformSelector {
isAndroid() {
return Platform.OS === 'android';
}
isIOS() {
return Platform.OS === 'ios';
}
}
export default new PlatformSelector();
//# sourceMappingURL=PlatformSelector.js.map