| 123456789101112131415161718192021222324252627282930313233343536 |
- 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';
- import { handleGoWhatsApp } from '../../util/index';
- const AssistancePageComponent = () => {
- return (
- <SafeAreaView className="flex-1 bg-white" edges={['top', 'right', 'left']}>
- <ScrollView className="flex-1 mx-[5%]" showsVerticalScrollIndicator={false}>
- <View style={{ marginTop: 25 }}>
- <Pressable
- onPress={() => {
- router.replace('/accountMainPage');
- }}
- >
- <CrossLogoSvg />
- </Pressable>
- <Text style={{ fontSize: 45, marginVertical: 25 }}>排除解難</Text>
- </View>
- <View>
- <Text className="text-lg">
- 如果您在使用該應用程式時遇到任何問題,請透過WhatsApp聯絡我們的客戶服務人員:
- </Text>
- <Pressable onPress={handleGoWhatsApp}>
- <Text className="text-3xl font-semibold underline text-[#02677D] pt-2">+852 9138 2139</Text>
- </Pressable>
- </View>
- </ScrollView>
- </SafeAreaView>
- );
- };
- export default AssistancePageComponent;
|