iOS Swift - SwiftUI Basics
You want to create a vertical layout with three Text views spaced evenly in the screen height. Which SwiftUI code achieves this using Spacer and padding?
VStack {
Text("Top")
Spacer()
Text("Middle")
Spacer()
Text("Bottom")
}.padding(30)
What is the effect of the .padding(30) modifier here?