metrics.js 289 B

1234567891011
  1. import {Dimensions} from 'react-native'
  2. const {width, height} = Dimensions.get('window');
  3. // Since the app will only potrayed in potrait mode
  4. const metrics = {
  5. screenWidth: width < height ? width : height,
  6. screenHeight: width < height ? height: width
  7. }
  8. export default metrics;