Fix UI blooper in CurrentPlaylistView

This commit is contained in:
vfsfitvnm 2022-08-07 11:33:41 +02:00
parent 41b22eab70
commit e4e53bf056

View file

@ -8,7 +8,6 @@ import androidx.compose.foundation.Image
import androidx.compose.foundation.background import androidx.compose.foundation.background
import androidx.compose.foundation.clickable import androidx.compose.foundation.clickable
import androidx.compose.foundation.interaction.MutableInteractionSource import androidx.compose.foundation.interaction.MutableInteractionSource
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.layout.PaddingValues
@ -205,7 +204,6 @@ fun CurrentPlaylistView(
Row( Row(
verticalAlignment = Alignment.CenterVertically, verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceBetween,
modifier = Modifier modifier = Modifier
.clickable( .clickable(
indication = rememberRipple(bounded = true), indication = rememberRipple(bounded = true),
@ -221,7 +219,12 @@ fun CurrentPlaylistView(
Spacer( Spacer(
modifier = Modifier modifier = Modifier
.padding(all = 8.dp) .padding(all = 8.dp)
.size(20.dp) .size(22.dp)
)
Spacer(
modifier = Modifier
.weight(1f)
) )
Column(horizontalAlignment = Alignment.CenterHorizontally) { Column(horizontalAlignment = Alignment.CenterHorizontally) {
@ -237,6 +240,11 @@ fun CurrentPlaylistView(
) )
} }
Spacer(
modifier = Modifier
.weight(1f)
)
Image( Image(
painter = painterResource(R.drawable.shuffle), painter = painterResource(R.drawable.shuffle),
contentDescription = null, contentDescription = null,