Experimental Rust UI library, inspired by SwiftUI. Early days, but some stuff already works.
rui is immediate mode (there is no retained tree of views), GPU rendered, and has richer layout options than other immediate mode UIs.
obligatory Counter (cargo run --example counter
):
```Rust use rui::*;
fn main() { rui(state(1, |count| { vstack(( text(&format!("{:?}", count.get())).padding(Auto), button(text("increment"), move || { count.with_mut(|x| *x += 1); }) .padding(Auto), )) })); } ```
some shapes (cargo run --example shapes
):
```rust use rui::*;
fn main() { rui(hstack(( circle() .color(REDHIGHLIGHT) .padding(Auto), rectangle() .cornerradius(5.0) .color(AZURE_HIGHLIGHT) .padding(Auto) ))); } ```
canvas for gpu drawing (cargo run --example canvas
):
```rust use rui::*;
fn main() { rui(canvas(|rect, vger| { vger.translate(rect.center() - LocalPoint::zero());
let paint = vger.linear_gradient(
[-100.0, -100.0],
[100.0, 100.0],
AZURE_HIGHLIGHT,
RED_HIGHLIGHT,
0.0,
);
let radius = 100.0;
vger.fill_circle(LocalPoint::zero(), radius, paint);
}));
} ```
slider with a binding (cargo run --example slider
):
```rust use rui::*;
struct MyState { value: f32, }
fn main() { rui(state(MyState { value: 0.0 }, |state| { vstack(( text(&format!("value: {:?}", state.get().value)).padding(Auto), hslider(bind!(state, value)) .thumbcolor(REDHIGHLIGHT) .padding(Auto), )) })); } ```
In the long term, I'd like to move Audulus over to Rust. After looking at other available UI options, it seemed best to implement something resembling the existing immediate mode UI system I already have working in Audulus, but better.
Towards principled reactive UI