cushy/examples/basic-button.rs
Jonathan Johnson 80ba184c15
Removing centered from readme example
Until #78 is addressed.
2023-11-14 20:41:04 -08:00

20 lines
656 B
Rust

use gooey::value::Dynamic;
use gooey::widget::MakeWidget;
use gooey::Run;
// begin rustme snippet: readme
fn main() -> gooey::Result {
// Create a dynamic usize.
let count = Dynamic::new(0_isize);
// Create a dynamic that contains `count.to_string()`
let count_label = count.map_each(ToString::to_string);
// Create a new button whose text is our dynamic string.
count_label
.into_button()
// Set the `on_click` callback to a closure that increments the counter.
.on_click(count.with_clone(|count| move |_| count.set(count.get() + 1)))
// Run the application
.run()
}
// end rustme snippet