summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 05:24:10 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-01-27 05:32:18 +0100
commit8fd87f94eb11f4c76e9aa67ef6c2a3452add0730 (patch)
treef9c2d25b2822f2456777564fd621dc5427ed33e2
parent2753103942afc262103c15faf9ab2e7495b3f5c2 (diff)
downloadiced-8fd87f94eb11f4c76e9aa67ef6c2a3452add0730.tar.gz
iced-8fd87f94eb11f4c76e9aa67ef6c2a3452add0730.tar.bz2
iced-8fd87f94eb11f4c76e9aa67ef6c2a3452add0730.zip
Make `animation` module only available in native
-rw-r--r--core/src/lib.rs2
-rw-r--r--src/lib.rs13
2 files changed, 11 insertions, 4 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs
index 16b3aa0f..3a61a5ee 100644
--- a/core/src/lib.rs
+++ b/core/src/lib.rs
@@ -10,6 +10,7 @@
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
)]
pub mod alignment;
+#[cfg(not(target_arch = "wasm32"))]
pub mod animation;
pub mod border;
pub mod clipboard;
@@ -50,6 +51,7 @@ mod vector;
pub use alignment::Alignment;
pub use angle::{Degrees, Radians};
+#[cfg(not(target_arch = "wasm32"))]
pub use animation::Animation;
pub use background::Background;
pub use border::Border;
diff --git a/src/lib.rs b/src/lib.rs
index eec844bc..34e1e37d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -498,20 +498,25 @@ 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, Animation, Background, Border, Color, ContentFit, Degrees,
- Gradient, Length, Padding, Pixels, Point, Radians, Rectangle, Rotation,
- Settings, Shadow, Size, Theme, Transformation, Vector,
+ Alignment, 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;
+#[cfg(not(target_arch = "wasm32"))]
+pub use crate::core::animation;
+
+#[cfg(not(target_arch = "wasm32"))]
+pub use crate::core::Animation;
+
pub use alignment::Horizontal::{Left, Right};
pub use alignment::Vertical::{Bottom, Top};
pub use Alignment::Center;