fix audio player size

This commit is contained in:
Henry Hiles 2026-05-21 12:40:26 -04:00
commit fd5eaa2725
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -61,7 +61,9 @@ class AudioPlayer extends HookConsumerWidget {
return "$minutes:$seconds";
}
return Card(
return SizedBox(
height: 60,
child: Card(
color: Theme.of(context).colorScheme.surfaceContainer,
child: Padding(
padding: EdgeInsetsGeometry.only(left: 8, right: 16),
@ -96,6 +98,7 @@ class AudioPlayer extends HookConsumerWidget {
],
),
),
),
);
}
}