From bf600a0811649392008927578afc32a18a93de34 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 27 Jan 2025 02:50:51 +0100 Subject: Draft basic `Animation` API in `iced_core` --- src/lib.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 939943a9..eec844bc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -498,15 +498,16 @@ pub mod window; pub mod advanced; pub use crate::core::alignment; +pub use crate::core::animation; pub use crate::core::border; pub use crate::core::color; pub use crate::core::gradient; pub use crate::core::padding; pub use crate::core::theme; pub use crate::core::{ - Alignment, Background, Border, Color, ContentFit, Degrees, Gradient, - Length, Padding, Pixels, Point, Radians, Rectangle, Rotation, Settings, - Shadow, Size, Theme, Transformation, Vector, + Alignment, Animation, Background, Border, Color, ContentFit, Degrees, + Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, Rotation, + Settings, Shadow, Size, Theme, Transformation, Vector, }; pub use crate::runtime::exit; pub use iced_futures::Subscription; -- cgit