summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-27 03:24:04 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-08-27 03:24:24 +0200
commit6298fd87a3d2305047a9458b46f7ec0f965740d7 (patch)
tree354cdfa28442a32708a0e643c11f097a75e42021 /README.md
parentd59d3f033de9bd1bd81d730486d75a1dbb589eb3 (diff)
downloadiced-6298fd87a3d2305047a9458b46f7ec0f965740d7.tar.gz
iced-6298fd87a3d2305047a9458b46f7ec0f965740d7.tar.bz2
iced-6298fd87a3d2305047a9458b46f7ec0f965740d7.zip
Update `README`
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 5 insertions, 8 deletions
diff --git a/README.md b/README.md
index c1c855b7..25934252 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,8 @@
-Iced
-&nbsp;
+# Iced
[![Build Status](https://travis-ci.org/hecrj/iced.svg?branch=master)](https://travis-ci.org/hecrj/iced)
[![Documentation](https://docs.rs/iced/badge.svg)](https://docs.rs/iced)
[![Crates.io](https://img.shields.io/crates/v/iced.svg)](https://crates.io/crates/iced)
[![License](https://img.shields.io/crates/l/iced.svg)](https://github.com/hecrj/iced/blob/master/LICENSE)
--------------------
A simple GUI runtime for Rust, heavily inspired by [Elm].
@@ -23,7 +21,7 @@ missing] and there are probably _many_ bugs. [Feel free to contribute!]
* Simple, easy-to-use API
* Responsive, flexbox-based layouting
* Type-safe, reactive programming model
- * Many built-in widgets
+ * Built-in widgets
* Custom widget support
* Renderer-agnostic runtime
@@ -87,7 +85,7 @@ 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> {
+ fn view(&mut self) -> Column<Message, Renderer> {
// We use a column: a simple vertical layout
Column::new()
.push(
@@ -150,9 +148,8 @@ Browse the [documentation] and the [examples] to learn more!
[gui_gfycat]: https://gfycat.com/gloomyweakhammerheadshark
## Implementation details
-Iced was originally born as part of [Coffee], a 2D game engine I am working on,
-as an attempt at bringing the simplicity of [Elm] and [The Elm Architecture]
-into Rust.
+Iced was originally born as an attempt at bringing the simplicity of [Elm] and
+[The Elm Architecture] into [Coffee], a 2D game engine I am working on.
Currently, Iced builds upon
* [`stretch`] for flexbox-based layouting.