diff options
author | 2025-01-27 02:50:51 +0100 | |
---|---|---|
committer | 2025-01-27 02:50:51 +0100 | |
commit | bf600a0811649392008927578afc32a18a93de34 (patch) | |
tree | 3a74b49cae995ebea0db100f07966c108dc48224 /src/lib.rs | |
parent | da1726b134ae084dd76b9e0a1107a771f69ed7c9 (diff) | |
download | iced-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.rs | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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; |