-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofiles.dart
137 lines (136 loc) · 4.36 KB
/
profiles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import 'package:flutter/material.dart';
import 'package:izoneapp/data/profile.dart';
abstract class Profiles {
static List<Profile> get profiles => [
Profile(
color: Color(0xffef539d),
dateOfBirth: DateTime(2018, 10, 29),
birthplace: "Seoul, South Korea",
colorDesc: "Magenta",
company: "Off the Record",
name: "IZ*ONE",
nameKorean: "아이즈원",
height: 163,
),
Profile(
birthplace: "Seoul, South Korea",
colorDesc: "Purple",
color: Color.fromRGBO(210, 172, 250, 1),
company: "Woollim Entertainment",
dateOfBirth: DateTime(1995, 09, 27),
name: "Kwon Eunbi",
nameKorean: "권은비",
height: 160,
),
Profile(
birthplace: "Kagoshima, Japan",
colorDesc: "Pastel Pink",
color: Color.fromRGBO(247, 202, 213, 1),
company: "EMI Records (HKT48)",
dateOfBirth: DateTime(1998, 03, 19),
name: "Miyawaki Sakura",
nameKorean: "미야와키 사쿠라",
height: 163,
),
Profile(
birthplace: "Yangsan, South Korea",
colorDesc: "Coral",
color: Color.fromRGBO(240, 127, 117, 1),
company: "8D Creative",
dateOfBirth: DateTime(1999, 07, 05),
name: "Kang Hyewon",
nameKorean: "강혜원",
height: 163,
),
Profile(
birthplace: "Seoul, South Korea",
colorDesc: "Yellow",
color: Color.fromRGBO(250, 230, 80, 1),
company: "Yuehua Entertainment",
dateOfBirth: DateTime(1999, 09, 29),
name: "Choi Yena",
nameKorean: "최예나",
height: 163,
),
Profile(
birthplace: "Yongin, South Korea",
colorDesc: "Blue Mint",
color: Color.fromRGBO(192, 227, 214, 1),
company: "WM Entertainment",
dateOfBirth: DateTime(2000, 01, 11),
name: "Lee Chaeyeon",
nameKorean: "이채연",
height: 165,
),
Profile(
birthplace: "Seoul, South Korea",
colorDesc: "Mint",
color: Color.fromRGBO(147, 243, 147, 1),
company: "Woollim Entertainment",
dateOfBirth: DateTime(2000, 08, 01),
name: "Kim Chaewon",
nameKorean: "김채원",
height: 164,
),
Profile(
birthplace: "Seoul, South Korea",
colorDesc: "White",
color: Colors.white,
company: "Urban Works Entertainment",
dateOfBirth: DateTime(2001, 02, 05),
name: "Kim Minju",
nameKorean: "김민주",
height: 164,
),
Profile(
birthplace: "Tochigi, Japan",
colorDesc: "Peach",
color: Color.fromRGBO(244, 183, 143, 1),
company: "Kings Records (AKB48)",
dateOfBirth: DateTime(2001, 10, 06),
name: "Honda Hitomi",
nameKorean: "혼다 히토미",
height: 160,
),
Profile(
birthplace: "Tokyo, Japan",
colorDesc: "Sky Blue",
color: Color.fromRGBO(143, 205, 230, 1),
company: "EMI Records (HKT48)",
dateOfBirth: DateTime(2001, 06, 18),
name: "Yabuki Nako",
nameKorean: "야부키 나코",
height: 150,
),
Profile(
birthplace: "Busan, South Korea",
colorDesc: "Orange",
color: Color.fromRGBO(247, 162, 57, 1),
company: "Stone Music Entertainment",
dateOfBirth: DateTime(2001, 10, 22),
name: "Jo Yuri",
nameKorean: "조유리",
height: 162,
),
Profile(
birthplace: "Cheongju, South Korea",
colorDesc: "Blue",
color: Color.fromRGBO(123, 161, 232, 1),
company: "Starship Entertainment",
dateOfBirth: DateTime(2003, 09, 01),
name: "An Yujin",
nameKorean: "안유진",
height: 168,
),
Profile(
birthplace: "Seoul, South Korea",
colorDesc: "Pink",
color: Color.fromRGBO(247, 134, 192, 1),
company: "Starship Entertainment",
dateOfBirth: DateTime(2004, 08, 31),
name: "Jang Wonyoung",
nameKorean: "장원영",
height: 171,
),
];
}