UNPKG

rn-try-n-buy-abfrl

Version:

Virtual try-on plugin for ABFRL

13 lines (10 loc) 283 B
import { Dimensions, Platform } from "react-native"; export function isIphoneX() { const dimension = Dimensions.get("window"); return ( Platform.OS === "ios" && !Platform.isPad && !Platform.isTVOS && (dimension.height === 812 || dimension.width === 812) ); }