Skip to content

Component PasswordInput

MeowLynxSea edited this page Jan 23, 2026 · 5 revisions

PasswordInput

A password input field.

Example

use gpui::ElementId;
use yororen_ui::component::password_input;

let view = password_input()
    .key(("settings", "password"))
    .placeholder("Password")
    .on_change(|value, _window, _cx| {
        // ...
    });

Clone this wiki locally