Skip to main content
.textFieldStyle(style: "roundedBorder" | "plain" | "automatic"): Component;

Parameters

style
"roundedBorder" | "plain" | "automatic"
The visual style to apply to the text field. Options are “roundedBorder”, “plain”, or “automatic”.

Support

Usage

Rounded border text field

TextField({ placeholder: "Enter your name", setText: setName, text: name })
    .textFieldStyle("roundedBorder")