react-native-status-bar-height

Get status bar height for React Native App

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-native-status-bar-height
2.6.03 years ago7 years agoMinified + gzip package size for react-native-status-bar-height in KB

Readme

react-native-status-bar-height
Small library that helps you to get status bar height

P.S :iphone:X supported :heart:

Install

$ npm install --save react-native-status-bar-height
# OR
$ yarn add react-native-status-bar-height

Usage getStatusBarHeight(skipAndroid: boolean = false)

import { getStatusBarHeight } from 'react-native-status-bar-height';

// 44 - on iPhoneX
// 20 - on iOS device
// X - on Android platfrom (runtime value)
// 0 - on all other platforms (default)
console.log(getStatusBarHeight());

// will be 0 on Android, because You pass true to skipAndroid
console.log(getStatusBarHeight(true));

License

This project is open-sourced software licensed under the MIT License.
See the LICENSE file for more information.