Implement checkbox::Renderer in ggez example

This commit is contained in:
Héctor Ramón Jiménez 2019-07-22 21:01:59 +02:00
parent ccb87b12da
commit eb45c51a7b
4 changed files with 88 additions and 8 deletions

View file

@ -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>;