PasswordInput

fun PasswordInput(modifier: Modifier, passwordState: MutableState<String>, labelId: String, enabled: Boolean, passwordVisibility: MutableState<Boolean>, imeAction: ImeAction = ImeAction.Done, onAction: KeyboardActions = KeyboardActions.Default, isCreateAccount: Boolean)

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

Parameters

modifier

the modifier for the input field

passwordState

the state of the password

labelId

the label for the input field

enabled

whether the input field is enabled

passwordVisibility

whether the password is visible

imeAction

the IME action for the input field

onAction

the keyboard actions for the input field

isCreateAccount

is the form the registration or log in