diff options
author | 2024-11-22 04:06:52 +0100 | |
---|---|---|
committer | 2024-11-22 04:06:52 +0100 | |
commit | 5be1d545d0baa09b82fe380d9246f66474cce302 (patch) | |
tree | 3493b8fecf17740ad67cc9d5fe6f9f9073206098 /widget/src/lib.rs | |
parent | 6ccc828607b22a0583c12bad638ee2bc7e7310b8 (diff) | |
download | iced-5be1d545d0baa09b82fe380d9246f66474cce302.tar.gz iced-5be1d545d0baa09b82fe380d9246f66474cce302.tar.bz2 iced-5be1d545d0baa09b82fe380d9246f66474cce302.zip |
Implement `pin` widget
Diffstat (limited to '')
-rw-r--r-- | widget/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/widget/src/lib.rs b/widget/src/lib.rs index 776a04a0..38c9929a 100644 --- a/widget/src/lib.rs +++ b/widget/src/lib.rs @@ -11,6 +11,7 @@ pub use iced_runtime::core; mod action; mod column; mod mouse_area; +mod pin; mod row; mod space; mod stack; @@ -63,6 +64,8 @@ pub use pane_grid::PaneGrid; #[doc(no_inline)] pub use pick_list::PickList; #[doc(no_inline)] +pub use pin::Pin; +#[doc(no_inline)] pub use progress_bar::ProgressBar; #[doc(no_inline)] pub use radio::Radio; |