yuan-elements
Version:
This package consists of React Native components that will be used by the Yuan app in its development.
33 lines (26 loc) • 673 B
JavaScript
import { Dimensions, Platform, StatusBar } from 'react-native';
// Borrowed from https://github.com/ptelad/react-native-iphone-x-helper
function isIphoneX() {
const dimen = Dimensions.get('window');
return (
Platform.OS === 'ios' &&
!Platform.isPad &&
!Platform.isTVOS &&
(dimen.height === 812 || dimen.width === 812)
);
}
function ifIphoneX(iphoneXStyle, regularStyle) {
if (isIphoneX()) {
return iphoneXStyle;
}
return regularStyle;
}
export function getStatusBarHeight(skipAndroid = false) {
if (Platform.OS === 'ios') {
return ifIphoneX(44, 20);
}
if (skipAndroid) {
return 0;
}
return StatusBar.currentHeight;
}