import AndroidLogo from '@/assets/icons/svg/android.svg'; import AppleLogo from '@/assets/icons/svg/apple.svg'; import MemoIP from '@/assets/icons/svg/memo-ip.svg'; import { LinearGradient } from 'expo-linear-gradient'; import { useTranslation } from 'react-i18next'; import { Linking, Text, TouchableOpacity, View } from 'react-native'; const IOS_APP_STORE_URL = 'https://apps.apple.com/cn/app/id6748205761'; const ANDROID_APK_URL = 'https://cdn.memorywake.com/apks/application-f086a38c-dac1-43f1-9d24-e4378c2ce121.apk'; export default function DownloadScreen() { const handleIOSDownload = () => { Linking.openURL(IOS_APP_STORE_URL); }; const handleAndroidDownload = () => { Linking.openURL(ANDROID_APK_URL); }; const { t } = useTranslation(); return ( MemoWake {t('desc', { ns: 'download' })} {t('ios', { ns: 'download' })} {t('android', { ns: 'download' })} ); }