diff options
Diffstat (limited to 'core/src/widget.rs')
-rw-r--r-- | core/src/widget.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/widget.rs b/core/src/widget.rs index 41c4c6a8..9e629e4f 100644 --- a/core/src/widget.rs +++ b/core/src/widget.rs @@ -9,6 +9,7 @@ //! ``` mod checkbox; mod column; +mod container; mod image; mod radio; mod row; @@ -32,6 +33,7 @@ pub use text_input::TextInput; pub use checkbox::Checkbox; pub use column::Column; +pub use container::Container; pub use image::Image; pub use radio::Radio; pub use row::Row; |