IS
Size: a a a
IS
DK
D
DK
DK
IB
IG
AB
IG
𝕬
let items: [GridItem] = Array(repeating: .init(.fixed(50)), count: 3)
ScrollView(.horizontal, showsIndicators: false) {
LazyHGrid(rows: items) {
ForEach(self.someArray, id: \.self) { arrayItem in
HStack {
someCustomView(arrayItem)
Spacer(minLength: 15)
}
}
}
}
𝕬
IS
IS
D
IS
IG
IS