UNPKG

react-native-in-app-message

Version:
9 lines (7 loc) 184 B
import { Dimensions } from 'react-native'; export class Util { static isIphoneX() { const {height, width} = Dimensions.get('window'); return (height / width) > 2.163; } }