@expo/status-bar-height
v0.0.1
Published
Listen to status bar changes during incoming calls and other multi-tasking events
Downloads
1,208
Maintainers
Readme
@expo/status-bar-height
Listen to status bar changes during incoming calls and other multi-tasking events 💙
Installation
yarn add @expo/status-bar-height
Usage
Import the library into your JavaScript file:
import StatusBarHeight from '@expo/status-bar-height';
Functions
StatusBarHeight.addEventListener( (height: number) => {} )
Given a callback this will be invoked whenever the status bar height changes. The status bar height changes when another app is running a background activity.
- Phone Calls
- Navigating
- Facetime
StatusBarHeight.removeEventListener( (height: number) => {} )
The provided function will stop receiving updates
StatusBarHeight.getAsync(): Promise<number>
Get the current height of the status bar async.
const height = await StatusBarHeight.getAsync();