feat(flutter): show album name beneath artist in full player

Title (22pt parchment) → artist (14pt ash) → album (12pt ash). Album
is conditional — drops out if MediaItem.album is empty rather than
leaving a blank line. Tightened the gap to the seek bar (24→20) to
absorb the new line on small screens.
This commit is contained in:
2026-05-11 08:12:29 -04:00
parent 59427bcf2f
commit 2a5b6970e9
@@ -100,7 +100,16 @@ class _NowPlayingScreenState extends ConsumerState<NowPlayingScreen> {
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
const SizedBox(height: 24),
if ((media.album ?? '').isNotEmpty) ...[
const SizedBox(height: 2),
Text(
media.album!,
style: TextStyle(color: fs.ash, fontSize: 12),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
],
const SizedBox(height: 20),
_SeekRow(position: pos, duration: dur, fs: fs, ref: ref),
const SizedBox(height: 8),
_PrimaryControls(