I am developing a certain application where it requires a user to fill a form. a form is not a problem actually but problem is when i want more than just one form dynamically. The number of forms (of the same look) depends on a certain number. So i decided to create a model and put the form in the list. That way the number of forms will be equal to nth number. problem is they are not appearing. If i remove the form they appear, if i put a form they do not. Is it that a form is not allowed in the list?
Below is expected results
But when i add the form in the list i get

So here's my simple List:
struct UserTab: View {
let seats = ["A4", "B2", "C1", "D3"]
var body: some View {
List(seats, id: \.self){seat in
PassengerInfoModel()
}
}
The PassengerInfoModel is below:
struct PassengerInfoModel: View {
@State private var fullName: String = ""
var body: some View {
Form{
Text("Paasenger 1")
TextField("Full name", text: $fullName)
}
}
}
Thanks in advance.
