OutlinedTextFieldDefaults
Contains the default values used by OutlinedTextField. For defaults used in TextField, see TextFieldDefaults.
Properties
The default thickness of the border in OutlinedTextField in focused state.
The default min height applied to an OutlinedTextField. Note that you can override it by applying Modifier.heightIn directly on a text field.
The default min width applied to an OutlinedTextField. Note that you can override it by applying Modifier.widthIn directly on a text field.
Default shape for an OutlinedTextField.
The default thickness of the border in OutlinedTextField in unfocused state.
Functions
Creates a TextFieldColors that represents the default input text, container, and content colors (including label, placeholder, icons, etc.) used in an OutlinedTextField.
Composable that draws a default container for an OutlinedTextField with a border stroke. You can apply it to a BasicTextField using DecorationBox to create a custom text field based on the styling of a Material outlined text field. The OutlinedTextField component applies it automatically.
Default content padding applied to OutlinedTextField. See PaddingValues for more details.
A decoration box used to create custom text fields based on Material Design outlined text field.