TextInputField
Composable function that creates a text input field with leading and trailing icons.
Parameters
The modifier to be applied to the input field.
The hint text to be displayed when the field is empty.
The current value of the text input field.
The size configuration of the input field, such as InputFieldSizes.Small or InputFieldSizes.Large.
The color of the text inside the input field.
Whether the input field is enabled or not.
The minimum number of lines for the text input.
The maximum number of lines for the text input.
Configuration for the keyboard options.
An optional leading icon to be displayed in the input field.
An optional trailing icon to be displayed in the input field.
The color of the icons in the input field.
An optional FocusRequester to request focus on the input field.
An optional callback when the trailing icon is clicked.
A callback that is triggered when the value of the input field changes.
A lower-level version of TextInputField that allows for custom composable leading and trailing content.
Parameters
The modifier to be applied to the input field.
The hint text to be displayed when the field is empty.
The current value of the text input field.
The size configuration of the input field, such as InputFieldSizes.Small or InputFieldSizes.Large.
The color of the text inside the input field.
Whether the input field is enabled or not.
The minimum number of lines for the text input.
The maximum number of lines for the text input.
Configuration for the keyboard options.
Custom composable for the leading content, typically an icon.
Custom composable for the trailing content, typically an icon with an optional click listener.
The color of the icons in the input field.
An optional FocusRequester to request focus on the input field.
An optional callback when the trailing icon is clicked.
A callback that is triggered when the value of the input field changes.