iOS 2.7.2 - Icons!
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user