SwiftUI Grid が使用可能なスペースに適応しないのはなぜですか? どうすれば修正できますか?
Apple の WWDC ビデオ「Stacks, Grids, and Outlines in SwiftUI」のコードをたどって変更しようとしました。
import SwiftUI
struct ContentView: View {
var body: some View {
albumGrid
}
}
let columns = [
// GridItem(.adaptive(minimum: 100))
GridItem(spacing: 0),
GridItem(spacing: 0),
GridItem(spacing: 0)
]
var albumGrid: some View {
ScrollView {
LazyVGrid(columns: columns, spacing: 0.2) {
ForEach(albums) { album in
Image(album.coverImageName)
}
}
}
}