Skip to content

Commit

Permalink
Improve track length >= 1 hours (#605)
Browse files Browse the repository at this point in the history
  • Loading branch information
Feichtmeier committed Mar 20, 2024
1 parent 1005c0e commit 4932cf6
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/src/player/player_track.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,7 @@ class PlayerTrack extends ConsumerWidget {
),
],
),
Expanded(
child: Padding(
padding: EdgeInsets.only(top: bottomPlayer ? 0 : 3),
child: slider,
),
),
Expanded(child: slider),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand All @@ -114,6 +109,7 @@ class PlayerTrack extends ConsumerWidget {
child: Text(
formatTime(duration ?? Duration.zero),
style: textStyle,
textAlign: TextAlign.end,
),
),
),
Expand Down

0 comments on commit 4932cf6

Please sign in to comment.