lrclib api option, many improvements and refactoring

This commit is contained in:
eevee
2025-03-12 21:54:10 +03:00
parent 8c443c8a9b
commit 08037dbb61
44 changed files with 505 additions and 332 deletions
@@ -0,0 +1,13 @@
import SwiftUI
struct ListRowSeparatorHidden: ViewModifier {
func body(content: Content) -> some View {
if #available(iOS 15.0, *) {
content
.listRowSeparator(.hidden)
}
else {
content
}
}
}