OudsPasswordInputKeyboardOptions

data class OudsPasswordInputKeyboardOptions(val imeAction: ImeAction = ImeAction.Unspecified, val platformImeOptions: PlatformImeOptions? = null, val showKeyboardOnFocus: Boolean? = null)

Keyboard options specific to the OudsPasswordInput component.

This class encapsulates KeyboardOptions to configure the software keyboard for password entry. It ensures that the KeyboardType is always set to KeyboardType.Password and allows for the customization of other common keyboard options.

Constructors

Link copied to clipboard
constructor(imeAction: ImeAction = ImeAction.Unspecified, platformImeOptions: PlatformImeOptions? = null, showKeyboardOnFocus: Boolean? = null)

Properties

Link copied to clipboard

The action to be displayed in the bottom corner of the keyboard (e.g., "Done", "Next").

Link copied to clipboard

Platform-specific input method editor (IME) options.

Link copied to clipboard

When set to true, software keyboard will show on focus gain. When false, the user must interact (e.g. tap) before the keyboard is shown. A null value (the default parameter value) means the keyboard will be shown on focus.