import { StyleSheet, SafeAreaView, ScrollView } from 'react-native'; import { Text, View } from '@/components/Themed'; import AdhkarCard from '@/components/AdhkarCard'; import SupplicationListItem from '@/components/SupplicationListItem'; const adhkarCategories = [ 'Thikr said in the morning and evening', 'Thikr before sleeping', 'Thikr after salam', ]; const supplications = [ 'Upon breaking fast', 'Supplication said by one fasting when presented with food and does not break his fast', 'When insulted while fasting', 'Supplication upon seeing the early or premature fruit', 'Supplication upon sneezing', ] export default function ServicesScreen() { return ( Services Adhkar {adhkarCategories.map((title, index) => ( ))} Hisn Al-Muslim {supplications.map((text, index) => ( {}} /> ))} ); } const styles = StyleSheet.create({ container: { flex: 1, }, innerContainer: { paddingHorizontal: 15, }, title: { fontSize: 22, fontWeight: 'bold', marginVertical: 15, }, sectionTitle: { fontSize: 20, fontWeight: 'bold', color: '#fff', marginVertical: 10, } });