Created
March 5, 2020 18:11
-
-
Save bogoslavskiy/d806b019ce3931916de6517984b3db1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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