import SwiftUI
struct AppIconView: View {
var body: some View {
VStack {
HStack {
Spacer()
ZStack {
Circle()
.frame(width:35,height:35)
.foregroundColor(.gray5)
Image(systemName: "xmark")
.font(.system(size: 15))
.foregroundColor(.gray12)
}
}
Spacer()
.frame(height:10)
Grid (horizontalSpacing: 20, verticalSpacing: 20) {
GridRow {
ForEach(0..<3) { _ in
Image("icon")
.resizable()
.frame(width: 75, height: 75)
}
}
GridRow {
ForEach(0..<3) { _ in
Image("icon")
.resizable()
.frame(width: 75, height: 75)
}
}
GridRow {
ForEach(0..<3) { _ in
Image("icon")
.resizable()
.frame(width: 75, height: 75)
}
}
}
}
.padding(.horizontal,20)
}
}
struct AppIconView_Previews: PreviewProvider {
static var previews: some View {
AppIconView()
}
}
// Hey there 👋
Join PRO to get the code for this template
You'll enjoy:
• Code for all PRO templates
• Lifetime access - Everything you see today, plus any new components and templates added in the future.
• One-time payment, no recurring subscription