This commit is contained in:
rang 2025-12-12 15:38:47 +08:00
parent 36f14dbd58
commit 5abf938dcf
26 changed files with 104 additions and 70 deletions

View file

@ -9,7 +9,7 @@ class MiniPlayerBottomPadding extends HookConsumerWidget {
Widget build(BuildContext context, WidgetRef ref) {
return AnimatedSize(
duration: const Duration(milliseconds: 200),
child: ref.watch(audioPlayerProvider).playing
child: ref.watch(absPlayerProvider).playing
? const SizedBox(height: playerMinHeight + 8)
: const SizedBox.shrink(),
);