-
Notifications
You must be signed in to change notification settings - Fork 9
Component NumberInput
MeowLynxSea edited this page Jan 23, 2026
·
5 revisions
A numeric input with stepper buttons.
The text field is controlled by the numeric value (non-numeric characters are not retained).
use gpui::ElementId;
use yororen_ui::component::number_input;
let view = number_input()
.key(ElementId::from(("settings", "retries")))
.min(0.0)
.max(10.0)
.step(1.0)
.value(3.0)
.on_change(|value, _window, _cx| {
// value: f64
});Yororen UI v0.3.0 · repository · Apache-2.0 · This wiki documents Yororen UI v0.3.0.
This wiki documents Yororen UI v0.3.0 — the headless-core, swappable-renderer build.