Remove redundant widget modules in subcrates

Instead, we can define the type aliases just once in the root crate!
This commit is contained in:
Héctor Ramón Jiménez 2022-03-09 14:10:15 +07:00
parent 7d9ab71790
commit 12c1a3f829
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
62 changed files with 225 additions and 780 deletions

View file

@ -32,7 +32,6 @@
pub mod settings;
pub mod triangle;
pub mod widget;
pub mod window;
mod backend;
@ -45,9 +44,6 @@ pub use wgpu;
pub use backend::Backend;
pub use settings::Settings;
#[doc(no_inline)]
pub use widget::*;
pub(crate) use iced_graphics::Transformation;
#[cfg(any(feature = "image_rs", feature = "svg"))]