iced-yoda/wgpu/src/renderer/widget.rs
Héctor Ramón Jiménez bc611cf51c Make image support optional in iced_wgpu
This reduces binary size when image rendering is not necessary a
considerable amount.
2020-01-20 11:19:42 +01:00

18 lines
228 B
Rust

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