import { Button, Divider, Heading, HStack, Link, Text, VStack } from 'native-base'; import { useTranslation } from 'react-i18next'; import { colorScheme } from '@/theme/color'; import { AboutScreenProps } from './AboutScreen.type'; /** * AboutScreen component. * * @returns The About screen component. */ function AboutScreen({ navigation }: AboutScreenProps) { const { t } = useTranslation(); return ( React Native template {t('label:screen.default.about.instructions')} {t('label:screen.default.about.author')}: Daomtthuan Github: @daomtthuan/react-native-template-all-setup ); } export default AboutScreen;