feat(player): показывать название станции под «В ЭФИРЕ» над обложкой

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
nk
2026-06-03 14:55:48 +03:00
parent 72ecbae866
commit b93bec028e

View File

@@ -94,6 +94,19 @@ fun PlayerBottomSheet(
letterSpacing = 2.sp, letterSpacing = 2.sp,
fontWeight = FontWeight.SemiBold fontWeight = FontWeight.SemiBold
) )
Spacer(Modifier.height(6.dp))
// Название радиостанции — под меткой, над обложкой
Text(
text = station?.name ?: "",
style = MaterialTheme.typography.titleLarge,
color = colors.textPrimary,
fontWeight = FontWeight.SemiBold,
maxLines = 1,
overflow = TextOverflow.Ellipsis,
textAlign = androidx.compose.ui.text.style.TextAlign.Center,
modifier = Modifier.basicMarquee()
)
Spacer(Modifier.height(16.dp)) Spacer(Modifier.height(16.dp))
// Обложка станции/трека // Обложка станции/трека