import React from 'react' import { Platform, StatusBar, StyleSheet, View } from 'react-native' import { getStatusBarHeight } from 'react-native-status-bar-height' export const STATUS_BAR_HEIGHT = getStatusBarHeight() export default () => const styles = StyleSheet.create({ statusBarUnderlay: { position: 'absolute', top: 0, left: 0, right: 0, height: STATUS_BAR_HEIGHT, backgroundColor: 'white', }, })