UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Grids with images

Forums > SwiftUI

I am having trouble trying to implement images into a LazyVGrid. I am trying to get 2 columns of images but I can't seem to figure it out. Any ideas?

1      

You can follow the instructions Paul gives on this page and just replace all of the Text views with Image views instead.

But here is an example of how it could be done.

struct ContentView: View {
    @State private var images = [Image]()
    let columns = [GridItem(.fixed(100)), GridItem(.fixed(100))]

    var body: some View {
        ScrollView {
            LazyVGrid(columns: columns, spacing: 20) {
                ForEach(0..<images.count, id: \.self) { index in
                    images[index]
                        .resizable()
                        .frame(width: 100, height: 100)
                }
            }
            .padding(.horizontal)
        }
        .frame(maxHeight: 350)

        Button("Add 10 Stars") {
            for _ in 1...10 {
                images.append(Image(systemName: "star"))
            }
        }
        .buttonStyle(.bordered)
    }
}

1      

TAKE YOUR SKILLS TO THE NEXT LEVEL If you like Hacking with Swift, you'll love Hacking with Swift+ – it's my premium service where you can learn advanced Swift and SwiftUI, functional programming, algorithms, and more. Plus it comes with stacks of benefits, including monthly live streams, downloadable projects, a 20% discount on all books, and free gifts!

Find out more

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.