store dna all done
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user