import React from 'react'; import { View, Text, ScrollView, TouchableOpacity } from 'react-native'; import { useNavigation } from '@react-navigation/native'; import { StackNavigationProp } from '@react-navigation/stack'; import { getStyles } from './helpSupportScreen.styles'; import { Header } from '@components'; import { useAppTheme } from '@theme'; import { AppStackParamList } from '../../../navigation/appStack'; type HelpSupportNavProp = StackNavigationProp; const FAQS = [ { q: 'How do I track my order?', a: 'Go to Orders tab and tap on your active order to see tracking.' }, { q: 'What is the delivery time?', a: 'Standard delivery takes 25-30 min, Express takes 10-15 min.' }, { q: 'How do I cancel an order?', a: 'Contact support to cancel an order before it is dispatched.' }, { q: 'What payment methods are accepted?', a: 'UPI, Credit/Debit Card, Wallet, and Cash on Delivery.' }, ]; export const HelpSupportScreen: React.FC = () => { const { colors } = useAppTheme(); const styles = getStyles(colors); const navigation = useNavigation(); return (
navigation.goBack()} /> Frequently Asked Questions {FAQS.map((faq, index) => ( {faq.q} {faq.a} ))} Contact Support 📞 Call us +91 1800 123 4567 ✉️ Email us support@sgdelivery.com ); };