iced-yoda/wgpu/src/renderer/widget.rs
Héctor Ramón Jiménez 8426bf953c Implement Empty widget
It can be useful if you want to fill some space with nothing.
2019-12-30 19:20:59 +01:00

14 lines
168 B
Rust

mod button;
mod checkbox;
mod column;
mod empty;
mod image;
mod radio;
mod row;
mod scrollable;
mod slider;
mod text;
mod text_input;
#[cfg(feature = "svg")]
mod svg;