dimensions.js 763 B

12345678910111213141516171819202122232425262728293031323334
  1. let {Dimensions,StatusBar,Platform,PixelRatio} = require('react-native');
  2. let {width,scale,height,fontScale} = Dimensions.get("window");
  3. let isIOS = Platform.OS == "ios";
  4. let statusBarHeight = isIOS? 20: StatusBar.currentHeight;
  5. let pixelRatio = PixelRatio;
  6. fontScale = scale;
  7. export default Dimensions = {
  8. get:Dimensions.get,
  9. screenWidth:width,
  10. screenHeight:height,
  11. screenScale:scale,
  12. width:width,
  13. height:height,
  14. scale:scale,
  15. fontScale:fontScale,
  16. statusBarHeight:statusBarHeight,
  17. contentHeight:height-statusBarHeight,
  18. pixelRatio: pixelRatio,
  19. getFontSize:function(size){
  20. return size*fontScale;
  21. },
  22. getWidth:function(width){
  23. return width*fontScale;
  24. },
  25. getHeight:function(height){
  26. return height*fontScale;
  27. },
  28. size:{
  29. "1":1*fontScale
  30. }
  31. }