iOS 2.7.2 - Icons!

This commit is contained in:
2026-01-14 14:17:36 -07:00
parent 94d2f9d951
commit 4da10912fc
15 changed files with 234 additions and 6 deletions

View File

@@ -204,6 +204,20 @@ struct AppIconSection: View {
}
}
Button(action: {
setIcon("Loss")
}) {
HStack {
Text("Loss")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Loss" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
Button(action: {
setIcon("Pride")
}) {
@@ -287,6 +301,20 @@ struct AppIconSection: View {
}
}
}
Button(action: {
setIcon("Gay")
}) {
HStack {
Text("Gay Pride")
.foregroundColor(.primary)
Spacer()
if currentIcon == "Gay" {
Image(systemName: "checkmark")
.foregroundColor(.primary)
}
}
}
}
.onAppear {
currentIcon = UIApplication.shared.alternateIconName