iced/examples/ggez/widget.rs
2019-07-22 21:01:59 +02:00

6 lines
170 B
Rust

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