diff --git a/app/(tabs)/services.tsx b/app/(tabs)/services.tsx index 2c16ca3..ef7e149 100644 --- a/app/(tabs)/services.tsx +++ b/app/(tabs)/services.tsx @@ -1,4 +1,4 @@ -import { StyleSheet, SafeAreaView, FlatList } from 'react-native'; +import { StyleSheet, SafeAreaView, FlatList, View } from 'react-native'; import { Text } from '@/components/Themed'; import i18n from '@/i18n'; import { FontAwesome5 } from '@expo/vector-icons'; @@ -7,18 +7,22 @@ import ServiceCard from '@/components/ServiceCard'; const services = [ { key: 'sarToTmt', - icon: , + title: 'Manat kursy', + icon: , }, { key: 'hotelBusinessCard', - icon: , + title: 'Oteliň wizitkasy', + icon: , }, { key: 'masterkeyBox', + title: 'Oteliň açary içinde galsa', icon: , }, { key: 'translator', + title: 'Terjimeçi', icon: , }, ]; @@ -27,13 +31,13 @@ export default function ServicesScreen() { return ( {i18n.t('services')} - } - keyExtractor={(item) => item.key} - numColumns={2} - columnWrapperStyle={styles.row} - /> + } + keyExtractor={(item) => item.key} + numColumns={2} + columnWrapperStyle={styles.row} + /> ); } @@ -47,6 +51,7 @@ const styles = StyleSheet.create({ fontSize: 22, fontWeight: 'bold', marginVertical: 15, + marginLeft: 15, }, row: { flex: 1,