3️⃣Views + Modifiers
Fall 2023 | Vin Bui
Structs for Views
Views and Modifiers
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundColor(.accentColor)
Text("Hello, world!")
}
.padding()
}var body: some View {
Button("Hello!") {
print(type(of: self.body))
}
.padding()
.frame(width: 200, height: 200)
}Last updated
Was this helpful?