|
@@ -5,7 +5,21 @@ import type { NavigationProp } from '@react-navigation/native';
|
|
import { Header, PageWrapper } from '../../../components';
|
|
import { Header, PageWrapper } from '../../../components';
|
|
import { styles } from './styles';
|
|
import { styles } from './styles';
|
|
import { Colors } from 'src/theme';
|
|
import { Colors } from 'src/theme';
|
|
-import FlagsSvg from 'assets/icons/travels-section/flags.svg';
|
|
|
|
|
|
+import UserGroupIcon from '../../../../assets/icons/user-group.svg';
|
|
|
|
+import CrownIcon from '../../../../assets/icons/crown.svg';
|
|
|
|
+import IDCardIcon from '../../../../assets/icons/id-card.svg';
|
|
|
|
+import StreetPeopleIcon from '../../../../assets/icons/street-view.svg';
|
|
|
|
+import ChartPieIcon from '../../../../assets/icons/chart-pie.svg';
|
|
|
|
+import MemoriamIcon from '../../../../assets/icons/monument.svg';
|
|
|
|
+import ScrollIcon from '../../../../assets/icons/scroll.svg';
|
|
|
|
+import TrophyIcon from '../../../../assets/icons/trophy.svg';
|
|
|
|
+import FlagsIcon from '../../../../assets/icons/travels-section/flags.svg';
|
|
|
|
+import RegionsIcon from '../../../../assets/icons/travels-section/regions.svg';
|
|
|
|
+import MapLocationIcon from '../../../../assets/icons/travels-section/map-location.svg';
|
|
|
|
+import SeriesIcon from '../../../../assets/icons/travels-section/series.svg';
|
|
|
|
+import EarthIcon from '../../../../assets/icons/travels-section/earth.svg';
|
|
|
|
+import TripIcon from '../../../../assets/icons/travels-section/trip.svg';
|
|
|
|
+import ImagesIcon from '../../../../assets/icons/travels-section/images.svg';
|
|
|
|
|
|
type Props = {
|
|
type Props = {
|
|
navigation: NavigationProp<any>;
|
|
navigation: NavigationProp<any>;
|
|
@@ -24,28 +38,64 @@ export const PlanInfoScreen: FC<Props> = ({ navigation }) => {
|
|
showsVerticalScrollIndicator={false}
|
|
showsVerticalScrollIndicator={false}
|
|
contentContainerStyle={styles.contentContainerStyle}
|
|
contentContainerStyle={styles.contentContainerStyle}
|
|
>
|
|
>
|
|
- <Text style={[styles.text, { flex: 0 }]}>
|
|
|
|
- Travels section is a structured way to record your visited countries / regions / points
|
|
|
|
- of interest and to explore future destinations.
|
|
|
|
- </Text>
|
|
|
|
-
|
|
|
|
- <View>
|
|
|
|
- <Text style={[styles.title, { marginBottom: 10 }]}>Countries</Text>
|
|
|
|
- <View style={styles.infoBlock}>
|
|
|
|
- <View style={styles.imgContainer}>
|
|
|
|
- <FlagsSvg fill={Colors.ORANGE} />
|
|
|
|
- <Text style={styles.imgText}>Countries</Text>
|
|
|
|
- </View>
|
|
|
|
- <Text style={styles.text}>
|
|
|
|
- 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
|
|
|
|
- </Text>
|
|
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <FlagsIcon fill={Colors.ORANGE} />
|
|
</View>
|
|
</View>
|
|
- <Text style={[styles.text, { flex: 0 }]}>
|
|
|
|
- country and this will influence your SLOW score. Read more about slow here
|
|
|
|
- </Text>
|
|
|
|
|
|
+ <Text style={styles.title}>Countries</Text>
|
|
</View>
|
|
</View>
|
|
|
|
+ <Text style={styles.text}>Mark the countries you've been to as visited. You can also idicate how long you stayed in each country. This will influence you UN score and your SLOW score.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <RegionsIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>Regions</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>Explore the list of NomadMania regions. You can indicate your first and last year of visit, the quality of your visit and how many times you've been to a region. This will influence your NM score as well as UN and UN+ scores.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <MapLocationIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>DARE</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>Distinctive Alternative Remote Extremes is a novel list that can bring some new interest in the travel community and encourage travelers to go further. This will influence your DARE score.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <SeriesIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>Series</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>Explore 70+ series with various points of interest. Our must see items are in the Top of the tops series.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <EarthIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>Earth</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>A purely geographical measure of travel, Know Your Earth divides the world into 458 'pieces' based on 10 degree divisions of latitude and longitude.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <TripIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>Trips</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>Create your detailed travel log. Add info about your every trip, with each trip having a start and end date, list of visited regions and your comment.</Text>
|
|
|
|
+
|
|
|
|
+ <View style={styles.row}>
|
|
|
|
+ <View style={styles.iconContainer}>
|
|
|
|
+ <ImagesIcon fill={Colors.ORANGE} />
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.title}>Photos</Text>
|
|
|
|
+ </View>
|
|
|
|
+ <Text style={styles.text}>This is a place where you can upload your photos. Each photo can be assigned to a region or a DARE place.</Text>
|
|
|
|
+
|
|
|
|
+
|
|
</ScrollView>
|
|
</ScrollView>
|
|
</ImageBackground>
|
|
</ImageBackground>
|
|
</PageWrapper>
|
|
</PageWrapper>
|