Pride Icons

This commit is contained in:
2026-01-13 23:48:20 -07:00
parent 394789d609
commit 390b4bf499
32 changed files with 460 additions and 6 deletions

View File

@@ -180,13 +180,12 @@ struct AppIconSection: View {
setIcon(nil)
}) {
HStack {
Image(systemName: "triangle.fill")
Text("Peaks")
.foregroundColor(.primary)
Spacer()
if currentIcon == nil {
Image(systemName: "checkmark")
.foregroundColor(.blue)
.foregroundColor(.primary)
}
}
}
@@ -195,13 +194,82 @@ struct AppIconSection: View {
setIcon("Balls")
}) {
HStack {
Image(systemName: "circle.fill")
Text("Balls")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Balls" {
Image(systemName: "checkmark")
.foregroundColor(.blue)
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Pride")
}) {
HStack {
Text("Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Pride" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Trans")
}) {
HStack {
Text("Trans Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Trans" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Enby")
}) {
HStack {
Text("Non-Binary Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Enby" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Bi")
}) {
HStack {
Text("Bisexual Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Bi" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Lesbian")
}) {
HStack {
Text("Lesbian Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Lesbian" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}