21 lines
546 B
JavaScript
21 lines
546 B
JavaScript
import React from 'react';
|
|
import { StatusBar as StatusBarRN } from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { isIOS } from '../utils/deviceInfo';
|
|
import { themes } from '../constants/colors';
|
|
|
|
const StatusBar = React.memo(({ theme }) => {
|
|
let barStyle = 'light-content';
|
|
if (theme === 'light' && isIOS) {
|
|
barStyle = 'dark-content';
|
|
}
|
|
return <StatusBarRN backgroundColor={themes[theme].headerBackground} barStyle={barStyle} animated />;
|
|
});
|
|
|
|
StatusBar.propTypes = {
|
|
theme: PropTypes.string
|
|
};
|
|
|
|
export default StatusBar;
|