summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-26 04:08:27 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-26 04:10:32 +0200
commitd59d3f033de9bd1bd81d730486d75a1dbb589eb3 (patch)
tree46fdd0122a512cf99048df9b2340e78b3a75c495 /README.md
parentee2d40d77f6ac3a7f6e72163d484f2801e4922fe (diff)
downloadiced-d59d3f033de9bd1bd81d730486d75a1dbb589eb3.tar.gz
iced-d59d3f033de9bd1bd81d730486d75a1dbb589eb3.tar.bz2
iced-d59d3f033de9bd1bd81d730486d75a1dbb589eb3.zip
Write documentation for root module
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 7 insertions, 6 deletions
diff --git a/README.md b/README.md
index fd5ef6a4..c1c855b7 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ missing] and there are probably _many_ bugs. [Feel free to contribute!]
[gui_gfycat]: https://gfycat.com/gloomyweakhammerheadshark
## Features
- * Simple, easy-to-use, _macro-free_ API
+ * Simple, easy-to-use API
* Responsive, flexbox-based layouting
* Type-safe, reactive programming model
* Many built-in widgets
@@ -51,8 +51,8 @@ into four different concepts:
* __Update logic__ — a way to react to __messages__ and update your
__state__
-Let's say we want to build an interactive counter that can be incremented and
-decremented using two different buttons.
+We can build something to see how this works! Let's say we want a simple counter
+that can be incremented and decremented using two buttons.
We start by modelling the __state__ of our application:
@@ -84,6 +84,7 @@ Next, let's put it all together in our __view logic__:
```rust
use iced::{Button, Column, Text};
+use iced_wgpu::Renderer; // Iced is renderer-agnostic! We need to bring our own!
impl Counter {
fn view(&mut self) -> Column<Message> {
@@ -133,9 +134,9 @@ And that's everything! We just wrote a whole user interface. Iced is now able
to:
1. Take the result of our __view logic__ and build a user interface.
- 1. Process events representing user interactions and produce __messages__ for
- our __update logic__.
- 1. Draw the resulting user interface using our own custom __renderer__.
+ 1. Process events from our system and produce __messages__ for our
+ __update logic__.
+ 1. Draw the resulting user interface using our chosen __renderer__.
Browse the [documentation] and the [examples] to learn more!