Input Field
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
value State
the state of the input field
label Id
the label for the input field
enabled
whether the input field is enabled
is Single Line
whether the input field is a single line
keyboard Type
the keyboard type for the input field
ime Action
the IME action for the input field
on Action
the keyboard actions for the input field