ori::prelude

Function with_data_default

Source
pub fn with_data_default<S, T, V>(
    view: impl Fn(&mut S) -> V + 'static,
) -> impl View<T>
where S: Default + 'static, V: View<S>,
Expand description

Create a new WithState that replaces the data with the state using S::default().

ยงExample

struct Data {
    // ...
}

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