import { StyleSheet, SafeAreaView, FlatList, View } from 'react-native'; import { Text } from '@/components/Themed'; import i18n from '@/i18n'; import { FontAwesome5 } from '@expo/vector-icons'; import ServiceCard from '@/components/ServiceCard'; const services = [ { key: 'sarToTmt', title: 'Manat kursy', icon: , }, { key: 'hotelBusinessCard', title: 'Oteliň wizitkasy', icon: , }, { key: 'masterkeyBox', title: 'Oteliň açary içinde galsa', icon: , }, { key: 'translator', title: 'Terjimeçi', icon: , }, ]; export default function ServicesScreen() { return ( {i18n.t('services')} } keyExtractor={(item) => item.key} numColumns={2} columnWrapperStyle={styles.row} /> ); } const styles = StyleSheet.create({ container: { flex: 1, paddingHorizontal: 15, }, title: { fontSize: 22, fontWeight: 'bold', marginVertical: 15, marginLeft: 15, }, row: { flex: 1, justifyContent: 'space-around', }, });