19:Swift-Form表单
正文
// // FormPage.swift // SwiftUIDeom // // Created by zhoukang03 on 2023/3/28. // import SwiftUI struct FormPage: View { @State var firstName: String @State var lastName: String var body: some View { VStack { Form { TextField("First Name", text: $firstName) TextField("Last Name", text: $lastName) } }.navigationBarTitle(Text("Form")) } } struct FormPage_Previews: PreviewProvider { static var previews: some View { FormPage(firstName: "", lastName: "") } }
示例图