Files
Samandar Turgunboyev 124798419b fitst commit
2026-01-28 18:26:50 +05:00

18 lines
542 B
TypeScript

import { useTheme } from '@/components/ThemeContext';
import { CustomHeader } from '@/components/ui/Header';
import Profile from '@/screens/profile/ui/ProfileScreen';
import { SafeAreaView } from 'react-native-safe-area-context';
export default function ProfileScreen() {
const { isDark } = useTheme();
return (
<SafeAreaView
style={{ flex: 1, backgroundColor: isDark ? '#0f172a' : '#ffffff', paddingBottom: 30 }}
edges={['top']}
>
<CustomHeader logoutbtn={true} />
<Profile />
</SafeAreaView>
);
}