Protocol¶
TextFieldStyle¶
A specification for the appearance and interaction of a text field.¶
Declaration¶
protocol TextFieldStyle
Overview¶
Use types conforming to this protocol with textFieldStyle(_:) to change the style of TextField views.
There are currently 3 system-provided styles available on iOS: - DefaultTextFieldStyle - PlainTextFieldStyle - RoundedBorderTextFieldStyle - SquareBorderTextFieldStyle (macOS only)
You can create custom text field styles using the TextFieldStyle protocol:
struct MyTextFieldStyle: TextFieldStyle {
public func \_body(configuration field: TextField<\_Label>) -> some View {
field.textFieldStyle(PlainTextFieldStyle())
// style here
}
}
struct TextFieldView: View {
@State private var input = ""
var body: some View {
TextField("iMessage", text: $input)
.textFieldStyle(RoundedBorderTextFieldStyle())
}
}

Availability¶
iOS 13.0+
macOS 10.15+
tvOS 13.0+
watchOS 6.0+