Skip to content

Instantly share code, notes, and snippets.

@arekko
Created July 16, 2019 19:52
Show Gist options
  • Save arekko/b562583ff39004c4214a48f6810e6d6e to your computer and use it in GitHub Desktop.
Save arekko/b562583ff39004c4214a48f6810e6d6e to your computer and use it in GitHub Desktop.
React Native platform
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