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