feat(player): показывать название станции под «В ЭФИРЕ» над обложкой
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -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))
|
||||||
|
|
||||||
// Обложка станции/трека
|
// Обложка станции/трека
|
||||||
|
|||||||
Reference in New Issue
Block a user