OudsSecureTextField

fun OudsSecureTextField(state: OudsPasswordInputState, modifier: Modifier = Modifier, label: String? = null, placeholder: String? = null, lockIcon: Boolean = false, prefix: String? = null, enabled: Boolean = true, readOnly: Boolean = false, loader: OudsTextInputLoader? = null, outlined: Boolean = false, error: OudsError? = null, helperText: String? = null, constrainedMaxWidth: Boolean = false, inputTransformation: InputTransformation? = null, keyboardOptions: KeyboardOptions = OudsPasswordInputDefaults.KeyboardOptions, onKeyboardAction: KeyboardActionHandler? = null, onTextLayout: Density.(getResult: () -> TextLayoutResult?) -> Unit? = null, interactionSource: MutableInteractionSource? = null)

Deprecated

Please use OudsPasswordInput composable instead, which is the equivalent of Material SecureTextField in OUDS Android.

Replace with

OudsPasswordInput(state = state, modifier = modifier, label = label, placeholder = placeholder, lockIcon = lockIcon, prefix = prefix, enabled = enabled, readOnly = readOnly, loader = loader, outlined = outlined, error = error, helperText = helperText, constrainedMaxWidth = constrainedMaxWidth, inputTransformation = inputTransformation, keyboardOptions = keyboardOptions, onKeyboardAction = onKeyboardAction, onTextLayout = onTextLayout, interactionSource = interactionSource)

See also