mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-16 20:26:37 +00:00
Fix about icons
This commit is contained in:
parent
b83f7e9a55
commit
b6370aef98
1 changed files with 4 additions and 4 deletions
|
@ -29,19 +29,19 @@ struct AboutView: View {
|
||||||
Section {
|
Section {
|
||||||
HStack {
|
HStack {
|
||||||
Spacer()
|
Spacer()
|
||||||
Image("icon0")
|
Image(uiImage: .init(named: "AppIconAlternate0")!)
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 50, height: 50)
|
.frame(width: 50, height: 50)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
Image("icon14")
|
Image(uiImage: .init(named: "AppIconAlternate4")!)
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 50, height: 50)
|
.frame(width: 50, height: 50)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
Image("icon17")
|
Image(uiImage: .init(named: "AppIconAlternate17")!)
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 50, height: 50)
|
.frame(width: 50, height: 50)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
Image("icon23")
|
Image(uiImage: .init(named: "AppIconAlternate23")!)
|
||||||
.resizable()
|
.resizable()
|
||||||
.frame(width: 50, height: 50)
|
.frame(width: 50, height: 50)
|
||||||
.cornerRadius(4)
|
.cornerRadius(4)
|
||||||
|
|
Loading…
Reference in a new issue