InputField

fun InputField(modifier: Modifier = Modifier, valueState: MutableState<String>, labelId: String, enabled: Boolean, isSingleLine: Boolean = true, keyboardType: KeyboardType = KeyboardType.Text, imeAction: ImeAction = ImeAction.Next, onAction: KeyboardActions = KeyboardActions.Default)

This composable is the Input Field. It displays an input field for the user to enter text.

Parameters

modifier

the modifier for the input field

valueState

the state of the input field

labelId

the label for the input field

enabled

whether the input field is enabled

isSingleLine

whether the input field is a single line

keyboardType

the keyboard type for the input field

imeAction

the IME action for the input field

onAction

the keyboard actions for the input field