mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-01 09:27:14 +08:00
- AppRegistry - AppState - AsyncStorage - Dimensions - NativeMethods - NetInfo - PixelRatio - Platform - UIManager
14 lines
377 B
Markdown
14 lines
377 B
Markdown
# Dimensions
|
|
|
|
Note: dimensions may change (e.g due to device rotation) so any rendering logic
|
|
or styles that depend on these constants should try to call this function on
|
|
every render, rather than caching the value.
|
|
|
|
## Methods
|
|
|
|
static **get**(dimension: string)
|
|
|
|
Get a dimension (e.g., `"window"` or `"screen"`).
|
|
|
|
Example: `const { height, width } = Dimensions.get('window')`
|