import { View, Text, ScrollView, Pressable, Linking, Alert } from 'react-native'; import React, { useContext } from 'react'; import { SafeAreaView } from 'react-native-safe-area-context'; import { router } from 'expo-router'; import { CrossLogoSvg, RightArrowIconSvg } from '../global/SVG'; const AssistancePageComponent = () => { // const handlePress = async () => { // const phoneNumber = 'tel:+85291382129'; // try { // const supported = await Linking.canOpenURL(phoneNumber); // if (supported) { // await Linking.openURL(phoneNumber); // } else { // Alert.alert('Error', 'Unable to make a call'); // } // } catch (error) { // Alert.alert('Error', 'An unexpected error occurred'); // } // }; const handlePress = async () => { const phoneNumber = '85291382129'; // Remove the '+' sign const whatsappUrl = `whatsapp://send?phone=${phoneNumber}`; try { const supported = await Linking.canOpenURL(whatsappUrl); if (supported) { await Linking.openURL(whatsappUrl); } else { // If WhatsApp is not installed, try to open in browser const webWhatsappUrl = `https://wa.me/${phoneNumber}`; const webSupported = await Linking.canOpenURL(webWhatsappUrl); if (webSupported) { await Linking.openURL(webWhatsappUrl); } else { Alert.alert('Error', 'WhatsApp is not installed and web WhatsApp is not accessible'); } } } catch (error) { Alert.alert('Error', 'An unexpected error occurred'); } }; return ( { router.replace('/accountMainPage'); }} > 排除解難 如果您在使用該應用程式時遇到任何問題,請透過WhatsApp聯絡我們的客戶服務人員: +852 9138 2139 ); }; export default AssistancePageComponent;