@@ -74,6 +74,8 @@ class HomeScreen extends StatelessWidget {
74
74
style: TextStyle (
75
75
color: Color (0xFF7D9AFF ),
76
76
fontSize: 14.0 ,
77
+ fontFamily: "Campton_Light" ,
78
+ fontWeight: FontWeight .w800,
77
79
),
78
80
),
79
81
top: constraints.maxHeight - 160.0 ,
@@ -121,8 +123,8 @@ class HomeScreen extends StatelessWidget {
121
123
child: Text (
122
124
song.title,
123
125
style: TextStyle (
124
- color : Colors .black ,
125
- fontWeight : FontWeight .w400 ,
126
+ fontWeight : FontWeight .w600 ,
127
+ fontFamily : "Campton_Light" ,
126
128
),
127
129
overflow: TextOverflow .ellipsis,
128
130
),
@@ -156,15 +158,17 @@ class HomeScreen extends StatelessWidget {
156
158
"Popular" ,
157
159
style: TextStyle (
158
160
color: Colors .black,
159
- fontWeight: FontWeight .w500 ,
161
+ fontWeight: FontWeight .w600 ,
160
162
fontSize: 24.0 ,
163
+ fontFamily: "Campton_Light" ,
161
164
),
162
165
),
163
166
Text (
164
167
"Show all" ,
165
168
style: TextStyle (
166
169
color: Color (0xFF7D9AFF ),
167
- fontWeight: FontWeight .w500,
170
+ fontWeight: FontWeight .w600,
171
+ fontFamily: "Campton_Light" ,
168
172
),
169
173
),
170
174
],
@@ -186,7 +190,7 @@ class HomeScreen extends StatelessWidget {
186
190
),
187
191
backgroundColor: Color (0xFF7D9AFF ),
188
192
onPressed: () {
189
- // TODO: do something in here
193
+ print ( "play all tapped" );
190
194
},
191
195
),
192
196
),
@@ -243,7 +247,6 @@ class HomeScreen extends StatelessWidget {
243
247
listSong.add (Song (title: "Thank u, next" , duration: "3:27" ));
244
248
listSong.add (Song (
245
249
title: "Break up with your girlfriend, i'm bored" , duration: "3:10" ));
246
- listSong.add (Song (title: "Test" , duration: "0:00" ));
247
250
}
248
251
}
249
252
0 commit comments