summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 02:50:51 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 02:50:51 +0100
commitbf600a0811649392008927578afc32a18a93de34 (patch)
tree3a74b49cae995ebea0db100f07966c108dc48224 /src/lib.rs
parentda1726b134ae084dd76b9e0a1107a771f69ed7c9 (diff)
downloadiced-bf600a0811649392008927578afc32a18a93de34.tar.gz
iced-bf600a0811649392008927578afc32a18a93de34.tar.bz2
iced-bf600a0811649392008927578afc32a18a93de34.zip
Draft basic `Animation` API in `iced_core`
Diffstat (limited to '')
-rw-r--r--src/lib.rs7
1 files changed, 4 insertions, 3 deletions
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;