ori::core::viewsFunction with_state_default
Source pub fn with_state_default<S, T, V>(
view: impl FnMut(&mut S, &mut T) -> V + 'static,
) -> WithState<S, T, V>
Expand description
Create a new WithState
using S::default()
.
ยงExample
struct Data {
}
fn ui() -> impl View<Data> {
with_state_default(
|count: &mut i32, _data| {
on_click(
button(text!("Clicked {} time(s)", count)),
|cx, (count, _data)| {
*count += 1;
cx.rebuild();
},
)
}
)
}