TextInputField

fun TextInputField(modifier: <Error class: unknown class> = Modifier, hint: String = "", value: String, sizes: InputFieldSizes = InputFieldSizes.Small, textColor: <Error class: unknown class>? = null, enabled: Boolean = true, minLines: Int = 1, maxLines: Int = 1, keyboardOptions: <Error class: unknown class> = KeyboardOptions.Default, leadingIcon: <Error class: unknown class>? = null, trailingIcon: <Error class: unknown class>? = null, iconColor: <Error class: unknown class>? = null, focusRequester: <Error class: unknown class>? = null, onTrailingIconClick: () -> Unit? = null, onValueChange: (String) -> Unit)

Composable function that creates a text input field with leading and trailing icons.

Parameters

modifier

The modifier to be applied to the input field.

hint

The hint text to be displayed when the field is empty.

value

The current value of the text input field.

sizes

The size configuration of the input field, such as InputFieldSizes.Small or InputFieldSizes.Large.

textColor

The color of the text inside the input field.

enabled

Whether the input field is enabled or not.

minLines

The minimum number of lines for the text input.

maxLines

The maximum number of lines for the text input.

keyboardOptions

Configuration for the keyboard options.

leadingIcon

An optional leading icon to be displayed in the input field.

trailingIcon

An optional trailing icon to be displayed in the input field.

iconColor

The color of the icons in the input field.

focusRequester

An optional FocusRequester to request focus on the input field.

onTrailingIconClick

An optional callback when the trailing icon is clicked.

onValueChange

A callback that is triggered when the value of the input field changes.


fun TextInputField(modifier: <Error class: unknown class> = Modifier, hint: String = "", value: String, sizes: InputFieldSizes = InputFieldSizes.Small, textColor: <Error class: unknown class>? = null, enabled: Boolean = true, minLines: Int = 1, maxLines: Int = 1, keyboardOptions: <Error class: unknown class> = KeyboardOptions.Default, leading: (<Error class: unknown class>) -> Unit = {}, trailing: (<Error class: unknown class>, () -> Unit?) -> Unit = { _, _ -> }, iconColor: <Error class: unknown class>? = null, focusRequester: <Error class: unknown class>? = null, onTrailingIconClick: () -> Unit? = null, onValueChange: (String) -> Unit)

A lower-level version of TextInputField that allows for custom composable leading and trailing content.

Parameters

modifier

The modifier to be applied to the input field.

hint

The hint text to be displayed when the field is empty.

value

The current value of the text input field.

sizes

The size configuration of the input field, such as InputFieldSizes.Small or InputFieldSizes.Large.

textColor

The color of the text inside the input field.

enabled

Whether the input field is enabled or not.

minLines

The minimum number of lines for the text input.

maxLines

The maximum number of lines for the text input.

keyboardOptions

Configuration for the keyboard options.

leading

Custom composable for the leading content, typically an icon.

trailing

Custom composable for the trailing content, typically an icon with an optional click listener.

iconColor

The color of the icons in the input field.

focusRequester

An optional FocusRequester to request focus on the input field.

onTrailingIconClick

An optional callback when the trailing icon is clicked.

onValueChange

A callback that is triggered when the value of the input field changes.