Draft web runtime and widgets
This commit is contained in:
parent
a97401aed2
commit
27ac85a9d9
16 changed files with 321 additions and 29 deletions
20
web/src/widget.rs
Normal file
20
web/src/widget.rs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
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> {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue