Add enqueue and playlist icons

This commit is contained in:
vfsfitvnm
2022-07-08 22:11:57 +02:00
parent cb29edc3b8
commit 872ec273dd
9 changed files with 105 additions and 95 deletions

View File

@@ -148,7 +148,7 @@ fun AlbumScreen(
MenuCloseButton(onClick = menuState::hide)
MenuEntry(
icon = R.drawable.time,
icon = R.drawable.enqueue,
text = "Enqueue",
onClick = {
menuState.hide()
@@ -159,7 +159,7 @@ fun AlbumScreen(
)
MenuEntry(
icon = R.drawable.list,
icon = R.drawable.playlist,
text = "Import as playlist",
onClick = {
menuState.hide()

View File

@@ -117,7 +117,7 @@ fun BuiltInPlaylistScreen(
MenuCloseButton(onClick = menuState::hide)
MenuEntry(
icon = R.drawable.time,
icon = R.drawable.enqueue,
text = "Enqueue",
isEnabled = songs.isNotEmpty(),
onClick = {

View File

@@ -160,7 +160,7 @@ fun IntentUriScreen(uri: Uri) {
MenuCloseButton(onClick = menuState::hide)
MenuEntry(
icon = R.drawable.time,
icon = R.drawable.enqueue,
text = "Enqueue",
onClick = {
menuState.hide()
@@ -177,7 +177,7 @@ fun IntentUriScreen(uri: Uri) {
)
MenuEntry(
icon = R.drawable.list,
icon = R.drawable.playlist,
text = "Import as playlist",
onClick = {
isImportingAsPlaylist = true

View File

@@ -151,7 +151,7 @@ fun LocalPlaylistScreen(
MenuCloseButton(onClick = menuState::hide)
MenuEntry(
icon = R.drawable.time,
icon = R.drawable.enqueue,
text = "Enqueue",
isEnabled = playlistWithSongs.songs.isNotEmpty(),
onClick = {

View File

@@ -124,7 +124,7 @@ fun PlaylistScreen(
MenuCloseButton(onClick = menuState::hide)
MenuEntry(
icon = R.drawable.time,
icon = R.drawable.enqueue,
text = "Enqueue",
onClick = {
menuState.hide()
@@ -143,7 +143,7 @@ fun PlaylistScreen(
)
MenuEntry(
icon = R.drawable.list,
icon = R.drawable.playlist,
text = "Import",
onClick = {
menuState.hide()