19:Swift-Form表单

发布时间 2023-03-28 16:23:59作者: 风zk

 

 

正文

 

//
//  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: "")
    }
}

 

 

 

示例图