45 lines
997 B
JavaScript
45 lines
997 B
JavaScript
<<<<<<< HEAD
|
|
import {SafeAreaView, StatusBar} from 'react-native';
|
|
import React from 'react';
|
|
import {GlobalTheme} from '../theme';
|
|
|
|
const MyStatusBar = () => {
|
|
return (
|
|
<SafeAreaView
|
|
style={{
|
|
backgroundColor: GlobalTheme.colors.black,
|
|
}}>
|
|
<StatusBar
|
|
translucent={false}
|
|
backgroundColor={GlobalTheme.colors.black}
|
|
barStyle={'light-content'}
|
|
/>
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default MyStatusBar;
|
|
=======
|
|
import { StatusBar} from 'react-native';
|
|
import React from 'react';
|
|
import {GlobalTheme} from '../theme';
|
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
|
|
|
const MyStatusBar = () => {
|
|
return (
|
|
<SafeAreaView
|
|
style={{
|
|
backgroundColor: GlobalTheme.colors.primary,
|
|
}}>
|
|
<StatusBar
|
|
translucent={false}
|
|
backgroundColor={GlobalTheme.colors.black}
|
|
barStyle={'light-content'}
|
|
/>
|
|
</SafeAreaView>
|
|
);
|
|
};
|
|
|
|
export default MyStatusBar;
|
|
>>>>>>> dabur-store-dna
|