UNPKG

@applicaster/zapp-react-native-ui-components

Version:

Applicaster Zapp React Native ui components for the Quick Brick App

10 lines (7 loc) 235 B
import { Platform } from "react-native"; export const isAppleTV = () => { return !!(Platform.OS === "ios" && Platform.isTV); }; export const isAppleMobile = () => { return !!(Platform.OS === "ios" && Platform.isTV === false); };