Skip to content

Commit

Permalink
fix overflow on now playing bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Nov 19, 2023
1 parent 258f183 commit c99817b
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions lib/components/now_playing_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -313,27 +313,29 @@ class NowPlayingBar extends ConsumerWidget {
MainAxisAlignment
.spaceBetween,
children: [
Text(
processArtist(
currentTrack!
.item
.artist,
context),
style: TextStyle(
color: Colors
.white
.withOpacity(
0.85),
fontSize:
13,
fontFamily:
'Lexend Deca',
fontWeight:
FontWeight
.w300,
overflow:
TextOverflow
.ellipsis),
Expanded(
child: Text(
processArtist(
currentTrack!
.item
.artist,
context),
style: TextStyle(
color: Colors
.white
.withOpacity(
0.85),
fontSize:
13,
fontFamily:
'Lexend Deca',
fontWeight:
FontWeight
.w300,
overflow:
TextOverflow
.ellipsis),
),
),
Row(
children: [
Expand Down

0 comments on commit c99817b

Please sign in to comment.