Skip to content

Instantly share code, notes, and snippets.

@Royovo
Created April 12, 2018 07:57
Show Gist options
  • Save Royovo/1ea54bee8969831bba7b853a948d08ba to your computer and use it in GitHub Desktop.
Save Royovo/1ea54bee8969831bba7b853a948d08ba to your computer and use it in GitHub Desktop.
import { Dimensions, Platform } from 'react-native';
export const isIphoneX = () => {
const { height, width } = Dimensions.get('window');
return Platform.OS === 'ios' && (height === 812 || width === 812)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment