Guest User

Untitled

a guest
Apr 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import { Dimensions, Platform } from 'react-native';
  2.  
  3. export const isIphoneX = () => {
  4. const { height, width } = Dimensions.get('window');
  5. return Platform.OS === 'ios' && (height === 812 || width === 812)
  6. }
Add Comment
Please, Sign In to add comment