正文
import SwiftUI struct ButtonPage: View { var body: some View { Button { // 按钮点击事件 print("按钮点击事件") } label: { Text("按钮") .bold() .font(.system(size: 18, weight: .light, design: .rounded)) } .navigationBarTitle(Text("Button")) // 导航标题 } } #if DEBUG struct ButtonPage_Previews : PreviewProvider { static var previews: some View { ButtonPage() } } #endif
标签:struct,05,Button,some,按钮,View,Swift,ButtonPage From: https://www.cnblogs.com/zyzmlc/p/17237467.html