diff options
author | 2020-03-04 04:10:26 +0100 | |
---|---|---|
committer | 2020-03-04 04:10:26 +0100 | |
commit | 012b4adec7a87331b2d75f6bc5d2a0189dcd7ec5 (patch) | |
tree | ce668596d734fe9fe04e1fa40cb932cd3e1c1789 /native/src/widget.rs | |
parent | 02091267bf38d4da5efab57e9b63504804b3a468 (diff) | |
download | iced-012b4adec7a87331b2d75f6bc5d2a0189dcd7ec5.tar.gz iced-012b4adec7a87331b2d75f6bc5d2a0189dcd7ec5.tar.bz2 iced-012b4adec7a87331b2d75f6bc5d2a0189dcd7ec5.zip |
Draft `Panes` widget and `panes` example
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index f9424b02..d97e836c 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -25,6 +25,7 @@ pub mod checkbox; pub mod column; pub mod container; pub mod image; +pub mod panes; pub mod progress_bar; pub mod radio; pub mod row; @@ -46,6 +47,8 @@ pub use container::Container; #[doc(no_inline)] pub use image::Image; #[doc(no_inline)] +pub use panes::Panes; +#[doc(no_inline)] pub use progress_bar::ProgressBar; #[doc(no_inline)] pub use radio::Radio; |