Live Activities fix

This commit is contained in:
2026-04-19 16:57:57 +02:00
parent 053c743c41
commit c41b58d837
24 changed files with 1079 additions and 7 deletions
@@ -9,7 +9,7 @@ import SwiftUI
import UIKit
enum LibraryTab: CaseIterable {
case albumArtists, artists, albums, playlists, podcasts, radio
case albumArtists, artists, albums, playlists, genres, podcasts, radio
var title: LocalizedStringKey {
switch self {
@@ -17,6 +17,7 @@ enum LibraryTab: CaseIterable {
case .artists: return "Artists"
case .albums: return "Albums"
case .playlists: return "Playlists"
case .genres: return "Genres"
case .podcasts: return "Podcasts"
case .radio: return "Radio"
}
@@ -42,6 +43,7 @@ struct LibraryView: View {
case .artists: ArtistsView()
case .albums: AlbumsView()
case .playlists: PlaylistsView()
case .genres: GenresView()
case .podcasts: PodcastsView()
case .radio: RadiosView()
}