ori::prelude

Function with_data

Source
pub fn with_data<S, T, V>(
    build: impl FnOnce() -> S + 'static,
    view: impl FnMut(&mut S) -> V + 'static,
) -> impl View<T>
where V: View<S>,
Expand description

Create a new WithState that replaces the data with the state.

ยงExample

struct Data {
    // ...
}

fn ui() -> impl View<Data> {
    with_data(
        || 0,
        |count| {
            on_click(
                button(text!("Clicked {} time(s)", count)),
                |cx, count| {
                    *count += 1;
                    cx.rebuild();
                },
            )
        }
    )
}