UNPKG
autobots-lib
Version:
latest (1.0.0-beta-6)
1.0.0
1.0.0-beta-6
1.0.0-beta-5
1.0.0-beta-4
1.0.0-beta-3
1.0.0-beta-2
1.0.0-beta-1
汽车人基础库
autobots-lib
/
window.js
16 lines
(12 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
React
from
'react-native'
;
const
{
Dimensions
} =
React
;
const
win =
Dimensions
.
get
(
'window'
);
const
HEIGHT
= win.
height
;
const
WIDTH
= win.
width
;
var
window
={
Width
:
WIDTH
,
Height
:
HEIGHT
, }
module
.
exports
=
window
;