mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at samuel/fancy-queue 13 lines 569 B view raw
1import {Platform} from 'react-native' 2 3export const isIOS = Platform.OS === 'ios' 4export const isAndroid = Platform.OS === 'android' 5export const isNative = isIOS || isAndroid 6export const devicePlatform = isIOS ? 'ios' : isAndroid ? 'android' : 'web' 7export const isWeb = !isNative 8export const isMobileWebMediaQuery = 'only screen and (max-width: 1300px)' 9export const isMobileWeb = 10 isWeb && 11 // @ts-ignore we know window exists -prf 12 global.window.matchMedia(isMobileWebMediaQuery)?.matches 13export const isIPhoneWeb = isWeb && /iPhone/.test(navigator.userAgent)