Create iced_widget subcrate and re-organize the whole codebase

This commit is contained in:
Héctor Ramón Jiménez 2023-03-04 05:37:11 +01:00
parent c54409d171
commit 3a0d34c024
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
209 changed files with 1959 additions and 2183 deletions

View file

@ -27,17 +27,17 @@ mod transformation;
mod viewport;
pub mod backend;
pub mod compositor;
pub mod image;
pub mod overlay;
pub mod primitive;
pub mod renderer;
pub mod window;
#[cfg(feature = "geometry")]
pub mod geometry;
pub use antialiasing::Antialiasing;
pub use backend::Backend;
pub use compositor::Compositor;
pub use error::Error;
pub use primitive::Primitive;
pub use renderer::Renderer;
@ -47,9 +47,4 @@ pub use viewport::Viewport;
#[cfg(feature = "geometry")]
pub use geometry::Geometry;
pub use iced_native::alignment;
pub use iced_native::text;
pub use iced_native::{
Alignment, Background, Color, Font, Gradient, Point, Rectangle, Size,
Vector,
};
pub use iced_core as core;