- Introduced a new 'Programs' tab in the TabLayout with localized title and icon. - Refactored ServicesScreen to replace ScrollView with FlatList for improved performance and layout, displaying service cards with icons. - Updated localization files to include new keys for services and programs.
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { View, Text, StyleSheet } from 'react-native';
|
|
import Colors from '@/constants/Colors';
|
|
|
|
type ServiceCardProps = {
|
|
title: string;
|
|
icon: React.ReactNode;
|
|
};
|
|
|
|
export default function ServiceCard({ title, icon }: ServiceCardProps) {
|
|
const colorScheme = 'dark';
|
|
|
|
return (
|
|
<View style={[styles.container, { backgroundColor: Colors[colorScheme].secondary }]}>
|
|
<View style={styles.content}>
|
|
<View style={styles.iconContainer}>{icon}</View>
|
|
<Text style={styles.title}>{title}</Text>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
borderRadius: 15,
|
|
padding: 15,
|
|
marginVertical: 10,
|
|
width: '45%',
|
|
aspectRatio: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
content: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
},
|
|
iconContainer: {
|
|
marginBottom: 10,
|
|
},
|
|
title: {
|
|
fontSize: 16,
|
|
fontWeight: 'bold',
|
|
color: Colors.dark.text,
|
|
textAlign: 'center',
|
|
},
|
|
});
|