浏览代码

Add spacers to buttons close to the bazel

vfsfitvnm 2 年之前
父节点
当前提交
db108dcb21

+ 6 - 0
app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/views/CurrentPlaylistView.kt

@@ -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)
+            )
         }
     }
 }

+ 5 - 0
app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/views/PlayerView.kt

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