Я использовал этот код для макета своего представления
Код: Выделить всё
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()
}
}

Подробнее здесь: https://stackoverflow.com/questions/582 ... ew-swiftui