mirror of
https://github.com/status-im/react-native-fast-image.git
synced 2025-02-25 04:35:12 +00:00
17 lines
438 B
JavaScript
17 lines
438 B
JavaScript
|
import React from 'react'
|
||
|
import { Platform, StatusBar, StyleSheet, View } from 'react-native'
|
||
|
|
||
|
export const STATUS_BAR_HEIGHT = Platform.OS === 'ios' ? 20 : StatusBar.currentHeight
|
||
|
|
||
|
export default () => <View style={styles.statusBarUnderlay} />
|
||
|
|
||
|
const styles = StyleSheet.create({
|
||
|
statusBarUnderlay: {
|
||
|
position: 'absolute',
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
right: 0,
|
||
|
height: STATUS_BAR_HEIGHT,
|
||
|
backgroundColor: 'white',
|
||
|
},
|
||
|
})
|