Skip to content

Instantly share code, notes, and snippets.

@orYoffe
Created December 28, 2018 13:48
Show Gist options
  • Save orYoffe/d9ab3adb226b561ab05e089b35d33d59 to your computer and use it in GitHub Desktop.
Save orYoffe/d9ab3adb226b561ab05e089b35d33d59 to your computer and use it in GitHub Desktop.
How to tel which env you are on with react native and react native web
import { Platform } from 'react-native';
const isWeb = Platform.OS === 'web';
const isNative = !isWeb;
const isIos = Platform.OS === 'ios';
const isAndroid = Platform.OS === 'android';
const isDesktop = isWeb && typeof matchMedia !== 'undefined' && matchMedia('(min-width: 768px)').matches;
const isMobile = !isDesktop;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment