iced-yoda/web/src/widget.rs

21 lines
317 B
Rust
Raw Normal View History

2019-09-14 20:54:50 +02:00
pub mod button;
pub mod slider;
pub mod text;
mod checkbox;
mod column;
mod image;
mod radio;
mod row;
pub use button::Button;
pub use checkbox::Checkbox;
pub use column::Column;
pub use image::Image;
pub use radio::Radio;
pub use row::Row;
pub use slider::Slider;
pub use text::Text;
pub trait Widget<Message> {}