【发布时间】:2019-10-08 10:45:27
【问题描述】:
我用 SwiftUI 创建了一个应用 我已经使用此代码来布局我的视图
struct ContentView: View {
var body: some View {
List(0 ..< 5) { item in
VStack {
Text("Hello World")
.font(.largeTitle)
.fontWeight(.bold)
.foregroundColor(Color.red)
Image("Hello")
.aspectRatio(contentMode: .fit)
}
}
}
}
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}
但是 VStack 不适合 contentView
【问题讨论】: