我使用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
答案 0 :(得分:1)
只需将.resizable()添加到图像中即可。
答案 1 :(得分:0)
在其周围包裹一个ScrollView {}。
struct ContentView: View {
var body: some View {
List(0 ..< 5) { item in
ScrollView{
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()
}
}