first commit

This commit is contained in:
Gitea
2026-04-20 15:13:29 +05:30
120 changed files with 32938 additions and 0 deletions
+24
View File
@@ -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