first commit
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
<<<<<<< HEAD
|
||||
import {SafeAreaView, StatusBar} from 'react-native';
|
||||
import React from 'react';
|
||||
import {GlobalTheme} from '../theme';
|
||||
@@ -18,3 +19,26 @@ const MyStatusBar = () => {
|
||||
};
|
||||
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user