mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 04:50:59 +00:00
21 lines
356 B
JavaScript
21 lines
356 B
JavaScript
|
/**
|
||
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
var PixelRatio = {
|
||
|
startDetecting: function () {
|
||
|
// noop for our implementation
|
||
|
},
|
||
|
|
||
|
get: function() {
|
||
|
return 2;
|
||
|
},
|
||
|
|
||
|
getPixelSizeForLayoutSize: function (layoutSize) {
|
||
|
return Math.round(layoutSize * PixelRatio.get());
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = PixelRatio;
|