Skip to content

Commit

Permalink
fix: update tv playlist item style.
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyroid committed May 12, 2024
1 parent a6a743f commit cb23312
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,16 +203,15 @@ private fun TvPlaylistItemImpl(
overflow = TextOverflow.Ellipsis,
)
},
supportingContent = if (type != null) {
{
TvText(
text = type,
maxLines = 1,
overflow = TextOverflow.Ellipsis,
style = TvMaterialTheme.typography.bodyMedium
)
}
} else null,
supportingContent = {
TvText(
text = type?.uppercase().orEmpty(),
maxLines = 1,
overflow = TextOverflow.Ellipsis,
style = TvMaterialTheme.typography.bodyMedium,
fontFamily = FontFamilies.LexendExa
)
},
trailingContent = {
Row(
modifier = Modifier
Expand Down

0 comments on commit cb23312

Please sign in to comment.