updated the blueprint icon

This commit is contained in:
neon443
2025-08-20 20:33:03 +01:00
parent 590c101db8
commit 29a9d2b188
11 changed files with 27 additions and 5 deletions

View File

@@ -35,10 +35,8 @@ enum AppIcon: Codable, CaseIterable, Equatable {
var image: Image {
switch self {
case .regular:
Image("Icon")
case .blueprint:
Image(uiImage: UIImage())
case .regular, .blueprint:
Image("\(self)")
}
}
}

View File

@@ -67,10 +67,11 @@ struct SettingsView: View {
.frame(maxWidth: 85)
.clipShape(RoundedRectangle(cornerRadius: 16.5))
.padding(5)
Spacer(minLength: 10)
Spacer()
Text("\(icon)").tag(icon)
.font(.caption)
.padding(5)
Spacer()
}
}
.frame(maxWidth: 85)