diff options
author | 2019-07-22 21:01:59 +0200 | |
---|---|---|
committer | 2019-07-22 21:01:59 +0200 | |
commit | eb45c51a7b8b9a595e318048712362c8d65d77b3 (patch) | |
tree | a32b6449e907f23e031405646a8df1cbd6c020b6 /examples/ggez/widget.rs | |
parent | ccb87b12da9f4c8e65571d31da2952ff1b5b08d9 (diff) | |
download | iced-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.rs | 1 |
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>; |