Skip to content

Component Button

MeowLynxSea edited this page Jan 23, 2026 · 5 revisions

Button

A clickable action.

Example

use yororen_ui::component::button;

let save = button()
    .child("Save")
    .on_click(|_ev, _window, _cx| {
        // ...
    });

Notes

  • Prefer key(...) only when you render many stateful buttons in repeated/virtualized UIs.

Clone this wiki locally