summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-27 06:56:26 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-27 06:56:26 +0200
commit2dbcdba209b4c815fb5aa68584bfdf052c983e9a (patch)
tree074e1931176da974d36857d4f62334bb5ab1ef80 /README.md
parenta1c5f8839dd972a016e4fd6af3a898c1d8f2684f (diff)
downloadiced-2dbcdba209b4c815fb5aa68584bfdf052c983e9a.tar.gz
iced-2dbcdba209b4c815fb5aa68584bfdf052c983e9a.tar.bz2
iced-2dbcdba209b4c815fb5aa68584bfdf052c983e9a.zip
Update `counter` example in `README` :tada:
Diffstat (limited to 'README.md')
-rw-r--r--README.md39
1 files changed, 14 insertions, 25 deletions
diff --git a/README.md b/README.md
index abb5b037..5e52234e 100644
--- a/README.md
+++ b/README.md
@@ -98,15 +98,9 @@ that can be incremented and decremented using two buttons.
We start by modelling the __state__ of our application:
```rust
-use iced::button;
-
struct Counter {
// The counter value
value: i32,
-
- // The local state of the two buttons
- increment_button: button::State,
- decrement_button: button::State,
}
```
@@ -125,28 +119,23 @@ Now, let's show the actual counter by putting it all together in our
__view logic__:
```rust
-use iced::{Button, Column, Text};
+use iced::widget::{button, column, text, Column};
impl Counter {
- pub fn view(&mut self) -> Column<Message> {
+ pub fn view(&self) -> Column<Message> {
// We use a column: a simple vertical layout
- Column::new()
- .push(
- // The increment button. We tell it to produce an
- // `IncrementPressed` message when pressed
- Button::new(&mut self.increment_button, Text::new("+"))
- .on_press(Message::IncrementPressed),
- )
- .push(
- // We show the value of the counter here
- Text::new(self.value.to_string()).size(50),
- )
- .push(
- // The decrement button. We tell it to produce a
- // `DecrementPressed` message when pressed
- Button::new(&mut self.decrement_button, Text::new("-"))
- .on_press(Message::DecrementPressed),
- )
+ column![
+ // The increment button. We tell it to produce an
+ // `IncrementPressed` message when pressed
+ button("+").on_press(Message::IncrementPressed),
+
+ // We show the value of the counter here
+ text(self.value).size(50),
+
+ // The decrement button. We tell it to produce a
+ // `DecrementPressed` message when pressed
+ button("-").on_press(Message::DecrementPressed),
+ ]
}
}
```