Skip to content

Commit

Permalink
Song info alignment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvanbhalara committed Aug 15, 2020
1 parent 245248c commit a503ef1
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions lib/music.dart
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,15 @@ class AudioAppState extends State<AudioApp> {
),
Padding(
padding: const EdgeInsets.only(top: 8.0),
child: Text(album + " | " + artist,
style: TextStyle(
color: accentLight,
fontSize: 15,
fontWeight: FontWeight.w500)),
child: Text(
album + " | " + artist,
textAlign: TextAlign.center,
style: TextStyle(
color: accentLight,
fontSize: 15,
fontWeight: FontWeight.w500,
),
),
),
],
),
Expand Down

0 comments on commit a503ef1

Please sign in to comment.