summaryrefslogtreecommitdiffstats
path: root/examples/ggez/widget.rs
blob: 00c013d4c236ad4995d97fef10a27ed1b9340f56 (plain) (blame)
1
2
3
4
5
6
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>;