Regenerating readmes

This commit is contained in:
Jonathan Johnson 2024-01-02 14:40:41 -08:00
parent 83e44912ee
commit 8bcbad959b
No known key found for this signature in database
GPG key ID: A66D6A34D6620579
2 changed files with 10 additions and 8 deletions

View file

@ -33,11 +33,12 @@ increments its own label:
fn main() -> cushy::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
// Create a new label displaying `count`
count
.clone()
.into_label()
// Use the label as the contents of a button
.into_button()
// Set the `on_click` callback to a closure that increments the counter.
.on_click(move |_| count.set(count.get() + 1))

View file

@ -35,11 +35,12 @@ increments its own label:
fn main() -> cushy::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
// Create a new label displaying `count`
count
.clone()
.into_label()
// Use the label as the contents of a button
.into_button()
// Set the `on_click` callback to a closure that increments the counter.
.on_click(move |_| count.set(count.get() + 1))