[feat] Show comic id

This commit is contained in:
acite
2025-09-20 14:28:05 +08:00
parent a298cb75e2
commit 82f537038c

View File

@@ -277,9 +277,18 @@ fun ComicCard(
fontWeight = FontWeight.Bold, fontWeight = FontWeight.Bold,
maxLines = 2, maxLines = 2,
modifier = Modifier modifier = Modifier
.padding(8.dp) .padding(4.dp)
.background(Color.Transparent)
.heightIn(max = 48.dp)
)
Spacer(Modifier.height(4.dp))
Text(
text = "Id: ${comic.id}",
fontSize = 12.sp,
maxLines = 2,
modifier = Modifier
.padding(bottom = 4.dp).padding(horizontal = 4.dp)
.background(Color.Transparent) .background(Color.Transparent)
.heightIn(48.dp)
) )
} }
} }