Add spacers to buttons close to the bazel

This commit is contained in:
vfsfitvnm 2022-08-06 22:52:08 +02:00
parent 39215c68d5
commit db108dcb21
2 changed files with 11 additions and 0 deletions

View file

@ -18,6 +18,7 @@ import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.width
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
import androidx.compose.foundation.lazy.rememberLazyListState
@ -245,6 +246,11 @@ fun CurrentPlaylistView(
.padding(all = 8.dp)
.size(20.dp)
)
Spacer(
modifier = Modifier
.width(2.dp)
)
}
}
}

View file

@ -374,6 +374,11 @@ fun PlayerView(
.padding(all = 8.dp)
.size(20.dp)
)
Spacer(
modifier = Modifier
.width(2.dp)
)
}
},
modifier = Modifier