Dimensions
useWindowDimensions
is the preferred API for React components. UnlikeDimensions
, it updates as the window's dimensions update. This works nicely with the React paradigm.
You can get the application window's width and height using the following code:
Although dimensions are available immediately, they may change (e.g due to device rotation, foldable devices etc) 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 (for example, using inline styles rather than setting a value in a
StyleSheet
).
If you are targeting foldable devices or devices which can change the screen size or app window size, you can use the event listener available in the Dimensions module as shown in the below example.
Example
- Function Component Example
- Class Component Example
Reference
Methods
addEventListener()
Add an event handler. Supported events:
change
: Fires when a property within theDimensions
object changes. The argument to the event handler is an object withwindow
andscreen
properties whose values are the same as the return values ofDimensions.get('window')
andDimensions.get('screen')
, respectively.window
- Size of the visible Application windowscreen
- Size of the device's screen
get()
Initial dimensions are set before runApplication
is called so they should be available before any other require's are run, but may be updated later.
Example: const {height, width} = Dimensions.get('window');
Parameters:
Name | Type | Required | Description |
---|---|---|---|
dim | string | Yes | Name of dimension as defined when calling set . @returns {Object?} Value for the dimension. |
For Android the
window
dimension will exclude the size used by thestatus bar
(if not translucent) andbottom navigation bar
removeEventListener()
Remove an event handler.
set()
This should only be called from native code by sending the didUpdateDimensions event.
Parameters:
Name | Type | Required | Description |
---|---|---|---|
dims | object | Yes | string-keyed object of dimensions to set |