import { View, Text, ScrollView, Image, Pressable } from 'react-native';
import React from 'react';
import { SafeAreaView } from 'react-native-safe-area-context';
import Svg, { Path, Rect } from 'react-native-svg';
import { router } from 'expo-router';
// SVG
const WalletSvg = () => (
);
const MyCarSvg = () => (
);
const ActivitySvg = () => (
);
const SettingIconSvg = () => (
);
const QuestionMarkIconSvg = () => (
);
const AccountSettingIconSvg = () => (
);
const AccountMainPageComponent = () => {
return (
Mike Chan
router.push('/')}
>
錢包
console.log('我的車輛 pressed')}
>
我的車輛
console.log('activity records pressed')}
>
活動記錄
設定
排除解難
帳戶設定
);
};
export default AccountMainPageComponent;