主题
struct ContentView: View { var body: some View { VStack { Text("Hello, SwiftUI!") .font(.title) Button("点击") { print("tapped") } } } }
@State
@Binding
@ObservedObject
@EnvironmentObject