Style tvOS playlist delete button with red text on bordered background

This commit is contained in:
Arkadiusz Fal
2026-04-17 02:47:05 +02:00
parent 87965d654d
commit afc4125bee

View File

@@ -553,12 +553,13 @@ struct UnifiedPlaylistDetailView: View {
}
.buttonStyle(.bordered)
Button(role: .destructive) {
Button {
showingDeleteConfirmation = true
} label: {
Label(String(localized: "playlist.delete"), systemImage: "trash")
.frame(maxWidth: .infinity, minHeight: 50)
.font(.headline)
.foregroundStyle(.red)
}
.buttonStyle(.bordered)
}