Pride Icons
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user