Files
info-target-mobile/app/(dashboard)/profile.tsx
Samandar Turgunboyev 754f11804a government ui complated
2026-02-05 16:09:03 +05:00

18 lines
556 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: 40 }}
edges={['top']}
>
<CustomHeader logoutbtn={true} notif={false} />
<Profile />
</SafeAreaView>
);
}