import { FC } from 'react'; import { ImageBackground, View, Text, ScrollView } from 'react-native'; import type { NavigationProp } from '@react-navigation/native'; import { Header, PageWrapper } from '../../../components'; import { styles } from './styles'; import { Colors } from 'src/theme'; import FlagsSvg from 'assets/icons/travels-section/flags.svg'; type Props = { navigation: NavigationProp; }; export const PlanInfoScreen: FC = ({ navigation }) => { return (
Travels section is a structured way to record your visited countries / regions / points of interest and to explore future destinations. Countries Countries Countries give you the easiest way of recording your travels - just mark a country as visited and it will be reflected in your UN score. You can also tell us how long you stayed in a country and this will influence your SLOW score. Read more about slow here ); };