complated

This commit is contained in:
Samandar Turgunboyev
2026-02-17 10:46:57 +05:00
parent 754f11804a
commit d747c72c8d
71 changed files with 917 additions and 397 deletions

View File

@@ -17,7 +17,6 @@ import {
ToastAndroid,
View,
} from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { user_api } from '../lib/api';
export default function AddEmployee() {
@@ -73,7 +72,7 @@ export default function AddEmployee() {
};
return (
<SafeAreaView style={[styles.container, { backgroundColor: theme.background }]}>
<View style={[styles.container, { backgroundColor: theme.background }]}>
<View style={styles.topHeader}>
<Pressable onPress={() => router.push('/profile/employees')}>
<ArrowLeft color={theme.text} />
@@ -140,7 +139,7 @@ export default function AddEmployee() {
</View>
</View>
</ScrollView>
</SafeAreaView>
</View>
);
}