Skip to content

Commit

Permalink
Make live color solid red
Browse files Browse the repository at this point in the history
  • Loading branch information
Isira-Seneviratne committed Aug 8, 2024
1 parent 3147286 commit 639451c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ fun StreamThumbnail(
Text(
modifier = Modifier
.padding(2.dp)
.background((if (isLive) Color.Red else Color.Black).copy(alpha = 0.5f))
.background(if (isLive) Color.Red else Color.Black.copy(alpha = 0.5f))
.padding(2.dp),
text = if (isLive) {
stringResource(R.string.duration_live)
Expand Down

0 comments on commit 639451c

Please sign in to comment.