2023年3月20日

06:Swift-NavigationButtonPage 导航按钮

摘要: 正文 import SwiftUI struct NavigationButtonPage: View { var body: some View { NavigationLink(destination: NavigationButtonPage()) { Text("NavigationButt 阅读全文

posted @ 2023-03-20 20:58 风zk 阅读(21) 评论(0) 推荐(0) 编辑

05:Swift-Button

摘要: 正文 import SwiftUI struct ButtonPage: View { var body: some View { Button { // 按钮点击事件 print("按钮点击事件") } label: { Text("按钮") .bold() .font(.system(size: 阅读全文

posted @ 2023-03-20 19:35 风zk 阅读(15) 评论(0) 推荐(0) 编辑

导航