Created
July 16, 2019 19:52
-
-
Save arekko/b562583ff39004c4214a48f6810e6d6e to your computer and use it in GitHub Desktop.
React Native platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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