From 76737351ea9e116291112b7d576d9ed4f6bb5c2a Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 12 Jul 2024 18:12:34 +0200 Subject: Re-export variants of `Length` and `alignment` types --- src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 79e2f276..8c6aeea3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -205,6 +205,11 @@ pub use crate::core::{ pub use crate::runtime::exit; pub use iced_futures::Subscription; +pub use alignment::Horizontal::{Left, Right}; +pub use alignment::Vertical::{Bottom, Top}; +pub use Alignment::Center; +pub use Length::{Fill, FillPortion, Shrink}; + pub mod task { //! Create runtime tasks. pub use crate::runtime::task::{Handle, Task}; -- cgit