UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

26 lines (23 loc) 563 B
import { Dimensions, Platform } from "react-native"; export const isIphoneX = () => { const { height, width } = Dimensions.get("window"); return ( Platform.OS === "ios" && !Platform.isPad && !Platform.isTVOS && (height === 780 || width === 780 || height === 812 || width === 812 || height === 844 || width === 844 || height === 852 || width === 852 || height === 896 || width === 896 || height === 926 || width === 926 || height === 932 || width === 932) ); };