UNPKG

react-native-material-elements

Version:

React native material elements is a sophisticated UI library crafted to enhance your React Native development workflow. Designed for simplicity and elegance, nex-ui provides a rich collection of components and utilities to effortlessly create polished mob

7 lines (5 loc) 285 B
import { Dimensions, Platform } from 'react-native'; export const { width: screenWidth, height: screenHeight } = Dimensions.get('window'); export const isLargeScreen = screenWidth >= 768; export const isIso = Platform.OS === 'ios'; export const isAndroid = Platform.OS === 'android';