import VectorIcon from '@/components/elements/VectorIcon/VectorIcon'; import PageWrapper from '@/components/layout/PageWrapper'; import { NativeStackScreenProps } from '@react-navigation/native-stack'; import React, { useEffect } from 'react'; import { useTranslation } from 'react-i18next'; import { Button, Text, View } from 'react-native-ui-lib'; import { useToast } from 'react-native-toast-notifications'; const HomeTab: React.FC> = ({ navigation, }) => { const { t } = useTranslation(); const toast = useToast(); useEffect(() => { navigation.setOptions({ headerRight: () => ( ), }); }, [navigation]); return ( {t('Home')}