赞
踩
Button是SwiftUI最常用的交互控件,下面就是Button简单代码
Button (
action: {
// handle the tap
},
label: {Text("Click Me")} )
我们也可以用更简单的方式表示,例如
Button("Click Me") {
//handle the tap
}
import SwiftUI
struct ContentView: View {
@State var text = ""
var body: some View {
VStack{
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。