diff options
| author | 2022-03-10 19:25:57 +0700 | |
|---|---|---|
| committer | 2022-03-14 17:44:25 +0700 | |
| commit | 6dd187ff0822230f084e43636b1aabeb1baf06f6 (patch) | |
| tree | 27426980b2882025a3c812ba2401d3bf8f6dca8d /pure/src/widget.rs | |
| parent | 9f27969d14232355ad628431fb67aa07e42e768f (diff) | |
| download | iced-6dd187ff0822230f084e43636b1aabeb1baf06f6.tar.gz iced-6dd187ff0822230f084e43636b1aabeb1baf06f6.tar.bz2 iced-6dd187ff0822230f084e43636b1aabeb1baf06f6.zip | |
Implement `pure` version of `PaneGrid` widget
Diffstat (limited to 'pure/src/widget.rs')
| -rw-r--r-- | pure/src/widget.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/pure/src/widget.rs b/pure/src/widget.rs index 8f2cf920..564f0583 100644 --- a/pure/src/widget.rs +++ b/pure/src/widget.rs @@ -1,4 +1,5 @@  pub mod image; +pub mod pane_grid;  pub mod progress_bar;  pub mod rule;  pub mod tree; @@ -24,6 +25,7 @@ pub use column::Column;  pub use container::Container;  pub use element::Element;  pub use image::Image; +pub use pane_grid::PaneGrid;  pub use pick_list::PickList;  pub use progress_bar::ProgressBar;  pub use radio::Radio; | 
