ori::preludeFunction with_data_default
Source pub fn with_data_default<S, T, V>(
view: impl Fn(&mut S) -> V + 'static,
) -> impl View<T>
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();
},
)
}
)
}