Skip to content

Instantly share code, notes, and snippets.

@bogoslavskiy
Created March 5, 2020 18:11
Show Gist options
  • Save bogoslavskiy/d806b019ce3931916de6517984b3db1d to your computer and use it in GitHub Desktop.
Save bogoslavskiy/d806b019ce3931916de6517984b3db1d to your computer and use it in GitHub Desktop.
import { Dimensions, Platform } from "react-native";
const width = Dimensions.get("window").width;
const height = Dimensions.get("window").height;
export const isIphoneX =
Platform.OS === "ios" &&
!Platform.isPad &&
!Platform.isTVOS &&
(height === 812 || width === 812 || height === 896 || width === 896);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment