import Constants from 'expo-constants'; import React from 'react'; import { View } from 'react-native'; import { useTranslation } from 'react-i18next'; import { SafeAreaView } from 'react-native-safe-area-context'; import { Text } from '@/components/ui/text'; import { ScreenHeader } from '@/components/screen-header'; import { config } from '@/core/config'; export default function AboutScreen() { const { t } = useTranslation('profile'); const version = Constants.expoConfig?.version ?? '1.0.0'; const showBackend = config.showAboutBackendUrl; return ( {t('about.appName')} {t('about.appSubtitle')} {t('about.version', { version })} {showBackend ? ( {t('about.backend')} {config.apiBaseUrl} ) : null} {t('about.tagline')} ); }