import { Ionicons } from '@expo/vector-icons'; import { LinearGradient } from 'expo-linear-gradient'; import Head from 'expo-router/head'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { Linking, Text, TouchableOpacity, View } from 'react-native'; const SupportScreen = () => { const { t } = useTranslation('support'); const handleWeChatSupport = () => { Linking.openURL('https://work.weixin.qq.com/kfid/kfca0ac87f4e05e8bfd'); }; const handleEmailSupport = () => { Linking.openURL('mailto:memowake@fairclip.cn'); }; return ( <> {t('pageTitle')} MemoWake {t('title')} {t('description')} {t('onlineSupport')} {t('emailSupport')} ); }; export default SupportScreen;