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

@@ -16,8 +16,8 @@ import {
StyleSheet,
Text,
TouchableOpacity,
View,
} from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
interface Category {
id: number;
@@ -95,7 +95,7 @@ export default function CategorySelectScreen() {
};
return (
<SafeAreaView style={styles.safeArea}>
<View style={styles.safeArea}>
<AuthHeader />
<Stack.Screen options={{ title: t('Yonalishni tanlang') }} />
@@ -145,7 +145,7 @@ export default function CategorySelectScreen() {
{t('Tadiqlash')}
</Text>
</TouchableOpacity>
</SafeAreaView>
</View>
);
}