我是 Xcode 12.4/Playgrounds 的新手,正在尝试运行此代码。到目前为止,它还没有生成 View 对象,也没有生成错误代码。关于我做错了什么的任何想法?
import SwiftUI
import PlaygroundSupport
struct ExampleView: View{
var body: some View {
VStack {
Rectangle()
.fill(Color.blue)
.frame(width:200, height:200)
Button(action: {
})
Text("Rotate")
}
};.padding(10)
}
PlaygroundPage.current.setLiveView(Example-View())
.padding(100)