Password Input
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
password State
the state of the password
label Id
the label for the input field
enabled
whether the input field is enabled
password Visibility
whether the password is visible
ime Action
the IME action for the input field
on Action
the keyboard actions for the input field
is Create Account
is the form the registration or log in