mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-04 17:29:07 +00:00
feat: Remove background color from SideControlButton and PlayPauseControlButton for improved UI clarity
This commit is contained in:
parent
a33ad982de
commit
d8187652cd
1 changed files with 1 additions and 3 deletions
|
|
@ -301,7 +301,6 @@ private fun SideControlButton(
|
|||
Box(
|
||||
modifier = Modifier
|
||||
.clip(CircleShape)
|
||||
.background(Color.Black.copy(alpha = 0.28f))
|
||||
.clickable(onClick = onClick)
|
||||
.padding(metrics.sideButtonPadding),
|
||||
contentAlignment = Alignment.Center,
|
||||
|
|
@ -310,7 +309,7 @@ private fun SideControlButton(
|
|||
imageVector = icon,
|
||||
contentDescription = contentDescription,
|
||||
tint = Color.White,
|
||||
modifier = Modifier.size(metrics.sideIconSize),
|
||||
modifier = Modifier.size(metrics.playIconSize),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -329,7 +328,6 @@ private fun PlayPauseControlButton(
|
|||
Box(
|
||||
modifier = Modifier
|
||||
.clip(CircleShape)
|
||||
.background(Color.Black.copy(alpha = 0.28f))
|
||||
.clickable(onClick = onClick)
|
||||
.padding(metrics.playButtonPadding),
|
||||
contentAlignment = Alignment.Center,
|
||||
|
|
|
|||
Loading…
Reference in a new issue