make embedded player playback indicators round

This commit is contained in:
Christian Schabesberger 2024-09-25 21:57:39 +02:00
parent 958ad74a2f
commit 07a3fcd001
1 changed files with 3 additions and 2 deletions

View File

@ -31,6 +31,7 @@ import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.wrapContentSize import androidx.compose.foundation.layout.wrapContentSize
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material3.LinearProgressIndicator import androidx.compose.material3.LinearProgressIndicator
import androidx.compose.material3.MaterialTheme import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Surface import androidx.compose.material3.Surface
@ -85,7 +86,7 @@ fun AudioPlayerEmbeddedUI(viewModel: NewPlayerViewModel, uiState: NewPlayerUISta
) { ) {
Surface( Surface(
color = MaterialTheme.colorScheme.primary, color = MaterialTheme.colorScheme.primary,
shape = ITEM_CORNER_SHAPE, shape = RoundedCornerShape(20.dp),
modifier = Modifier modifier = Modifier
.wrapContentSize() .wrapContentSize()
.padding(start = 10.dp, bottom = 14.dp) .padding(start = 10.dp, bottom = 14.dp)
@ -114,7 +115,7 @@ fun AudioPlayerEmbeddedUI(viewModel: NewPlayerViewModel, uiState: NewPlayerUISta
Surface( Surface(
color = CONTROLLER_UI_BACKGROUND_COLOR, color = CONTROLLER_UI_BACKGROUND_COLOR,
shape = ITEM_CORNER_SHAPE, shape = RoundedCornerShape(20.dp),
modifier = Modifier modifier = Modifier
.wrapContentSize() .wrapContentSize()
.padding(bottom = 14.dp, end = 10.dp) .padding(bottom = 14.dp, end = 10.dp)