Initial commit

This commit is contained in:
2025-06-25 11:56:07 +05:30
parent 87af035459
commit addd221003
20 changed files with 7113 additions and 11455 deletions
+20
View File
@@ -0,0 +1,20 @@
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;