In SwiftUI, I have several TextFields in a Form and they always begin with initial caps when data is entered? How do I prevent this? I want the field to be all lowercase.
You should be able to achieve this using the .autocapitalization() modifier:
TextField("Title", text: $myText)
.autocapitalization(.none)
There's also a .keyboardType() modifier that you may find useful:
TextField("Email", text: $email)
.autocapitalization(.none)
.keyboardType(.emailAddress)