react-native-hecom-common
Version:
Public UI components and data structures.
7 lines (6 loc) • 305 B
JavaScript
import { Platform, Dimensions } from 'react-native';
console.ignoredYellowBox = ['Remote debugger'];
global.isIos = Platform.OS === 'ios';
global.isAndroid = Platform.OS === 'android';
global.screenWidth = () => Dimensions.get('window').width;
global.screenHeight = () => Dimensions.get('window').height;