summaryrefslogtreecommitdiffstats
path: root/examples/ggez/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-07-22 21:01:59 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2019-07-22 21:01:59 +0200
commiteb45c51a7b8b9a595e318048712362c8d65d77b3 (patch)
treea32b6449e907f23e031405646a8df1cbd6c020b6 /examples/ggez/widget.rs
parentccb87b12da9f4c8e65571d31da2952ff1b5b08d9 (diff)
downloadiced-eb45c51a7b8b9a595e318048712362c8d65d77b3.tar.gz
iced-eb45c51a7b8b9a595e318048712362c8d65d77b3.tar.bz2
iced-eb45c51a7b8b9a595e318048712362c8d65d77b3.zip
Implement `checkbox::Renderer` in `ggez` example
Diffstat (limited to '')
-rw-r--r--examples/ggez/widget.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/ggez/widget.rs b/examples/ggez/widget.rs
index 657a3190..00c013d4 100644
--- a/examples/ggez/widget.rs
+++ b/examples/ggez/widget.rs
@@ -3,3 +3,4 @@ use ggez::graphics::Color;
pub use iced::{button, Button, Column, Row};
pub type Text = iced::Text<Color>;
+pub type Checkbox<Message> = iced::Checkbox<Color, Message>;