@@ -2,7 +2,6 @@ import 'package:flutter/material.dart';
22import 'package:flutter_riverpod/flutter_riverpod.dart' ;
33import 'package:go_router/go_router.dart' ;
44import '../../../music/application/providers/music_provider.dart' ;
5- import '../../../music/domain/services/music_service.dart' ;
65
76/// Mini player widget - persistent at bottom across all tabs
87class MiniPlayer extends ConsumerWidget {
@@ -27,9 +26,7 @@ class MiniPlayer extends ConsumerWidget {
2726 decoration: BoxDecoration (
2827 color: Theme .of (context).primaryColor.withValues (alpha: 0.1 ),
2928 border: Border (
30- top: BorderSide (
31- color: Theme .of (context).dividerColor,
32- ),
29+ top: BorderSide (color: Theme .of (context).dividerColor),
3330 ),
3431 ),
3532 padding: const EdgeInsets .symmetric (horizontal: 12 , vertical: 8 ),
@@ -71,10 +68,7 @@ class MiniPlayer extends ConsumerWidget {
7168 state.currentTrack! .artist,
7269 maxLines: 1 ,
7370 overflow: TextOverflow .ellipsis,
74- style: TextStyle (
75- fontSize: 12 ,
76- color: Colors .grey[600 ],
77- ),
71+ style: TextStyle (fontSize: 12 , color: Colors .grey[600 ]),
7872 ),
7973 ],
8074 ),
@@ -116,4 +110,3 @@ class MiniPlayer extends ConsumerWidget {
116110 );
117111 }
118112}
119-
0 commit comments