mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
fork

Configure Feed

Select the types of activity you want to include in your feed.

at typescript-check 11 lines 413 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 isWeb = !isNative 7export const isMobileWeb = 8 isWeb && 9 // @ts-ignore we know window exists -prf 10 global.window.matchMedia('only screen and (max-width: 1000px)')?.matches 11export const isDesktopWeb = isWeb && !isMobileWeb