Release v0.2.35

This commit is contained in:
ponzischeme89
2026-08-09 09:36:35 +12:00
parent 0c623bbcc0
commit add8aa831c
3 changed files with 20 additions and 19 deletions
@@ -74,37 +74,35 @@ fun GenreBrowseLauncher(
contentDescription = "Browse ${if (mediaLabel == "movie") "movies" else mediaLabel} by genre",
modifier = modifier
.padding(horizontal = 36.dp, vertical = 4.dp)
.fillMaxWidth()
.height(70.dp)
.width(156.dp)
.height(52.dp)
.focusProperties { left = navigationFocusRequester }
.background(MembySurfaceRaised, RoundedCornerShape(12.dp))
.border(1.dp, Color.White.copy(alpha = 0.08f), RoundedCornerShape(12.dp)),
.background(MembySurfaceRaised, RoundedCornerShape(10.dp))
.border(1.dp, Color.White.copy(alpha = 0.10f), RoundedCornerShape(10.dp)),
) { focused ->
Row(
modifier = Modifier
.fillMaxSize()
.background(
if (focused) MembyAccent.copy(alpha = 0.22f) else Color.Transparent,
RoundedCornerShape(12.dp),
if (focused) Color.White else Color.Transparent,
RoundedCornerShape(10.dp),
)
.padding(horizontal = 20.dp),
.padding(horizontal = 16.dp),
verticalAlignment = Alignment.CenterVertically,
) {
Icon(
Icons.Default.Category,
contentDescription = null,
tint = if (focused) Color.White else MembyAccent,
modifier = Modifier.size(27.dp),
tint = if (focused) MembySurface else MembyAccent,
modifier = Modifier.size(22.dp),
)
Spacer(Modifier.width(10.dp))
Text(
"Genres",
color = if (focused) MembySurface else Color.White,
fontSize = 16.sp,
fontWeight = FontWeight.Bold,
)
Spacer(Modifier.width(14.dp))
Column {
Text("Genres", color = Color.White, fontSize = 18.sp, fontWeight = FontWeight.Bold)
Text(
"Browse every $mediaLabel title in a full poster grid",
color = MembyMutedText,
fontSize = 13.sp,
)
}
}
}
}