-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.dart
104 lines (99 loc) · 2.69 KB
/
config.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import 'package:cv_template/domain/education_entry.dart';
import 'package:cv_template/domain/language_entry.dart';
import 'package:cv_template/domain/personal_data.dart';
import 'package:cv_template/domain/skill_entry.dart';
import 'package:cv_template/domain/work_entry.dart';
final edus = [
EducationEntry(
fromDate: DateTime(2014, 9),
toDate: DateTime(2018, 7),
degree: "Bachelor of Science",
university: "University of Berlin",
),
EducationEntry(
fromDate: DateTime(2018, 9),
toDate: DateTime(2020, 7),
degree: "Master of Science",
university: "University of Düsseldorf",
),
EducationEntry(
fromDate: DateTime(2018, 9),
toDate: DateTime(2020, 7),
degree: "PhD",
university: "University of Hamburg",
),
];
final languages = [
const LanguageEntry(
name: "English",
skillLevel: "C2",
rating: 5,
),
const LanguageEntry(
name: "German",
skillLevel: "C2",
rating: 5,
),
const LanguageEntry(
name: "Spanish",
skillLevel: "B2",
rating: 4,
),
];
final skills = [
const SkillEntry(
name: "Flart",
rating: 5,
imgPath: "assets/svg/flutter.svg",
),
const SkillEntry(
name: "Dotlin",
rating: 5,
imgPath: "assets/svg/kotlin.svg",
),
const SkillEntry(
name: "Dython",
rating: 3,
imgPath: "assets/svg/python.svg",
),
];
final work = [
WorkEntry(
fromDate: DateTime(2014, 9),
toDate: DateTime(2018, 7),
jobTitle: "Software Engineer",
company: "IBM",
description:
"Pioneered the development of the company's first-ever space tourism packages, including lunar landings, Martian treks, and zero-gravity experiences.",
),
WorkEntry(
fromDate: DateTime(2010, 9),
toDate: DateTime(2014, 7),
jobTitle: "Working Student",
company: "App Akademie",
description: "perated a variety of delivery vehicles, including vans.",
),
WorkEntry(
fromDate: DateTime(2005, 2),
toDate: DateTime(2007, 9),
jobTitle: "Logistic Driver",
company: "DHL",
description:
"Operated a variety of delivery vehicles, including vans, trucks, and motorcycles, to deliver packages to customers in a timely and efficient manner.")
];
final personalData = PersonalData(
firstName: "Jan",
lastName: "Sent",
email: "[email protected]",
phone: "+49 1575 911 9123",
dateOfBirth: DateTime(1994, 12, 25),
address: Address(
street: "Karl-Marx-Str. 1",
city: "Berlin",
zip: "12043",
),
profileDescription:
"A versatile and dedicated professional with a diverse range of experience in logistics, app development education and app development. ",
maritalStatus: MaritalStatus.single,
nationality: Nationality.german,
);