summaryrefslogtreecommitdiffstats
path: root/native/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-11 10:47:56 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-11 10:47:56 +0700
commit90c20ac46b72b6d8f735f7efd283b9d1dfecfb9d (patch)
tree3fd9ede535c633ef02156d6f82cbdbcd6a17bde0 /native/src/widget.rs
parent1a31aefab401712e44cd613fc1337ab90579d926 (diff)
downloadiced-90c20ac46b72b6d8f735f7efd283b9d1dfecfb9d.tar.gz
iced-90c20ac46b72b6d8f735f7efd283b9d1dfecfb9d.tar.bz2
iced-90c20ac46b72b6d8f735f7efd283b9d1dfecfb9d.zip
Draft `Responsive` widget
Diffstat (limited to '')
-rw-r--r--native/src/widget.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs
index caa3f0bc..d1619bf3 100644
--- a/native/src/widget.rs
+++ b/native/src/widget.rs
@@ -20,6 +20,7 @@ pub mod pane_grid;
pub mod pick_list;
pub mod progress_bar;
pub mod radio;
+pub mod responsive;
pub mod row;
pub mod rule;
pub mod scrollable;
@@ -50,6 +51,8 @@ pub use progress_bar::ProgressBar;
#[doc(no_inline)]
pub use radio::Radio;
#[doc(no_inline)]
+pub use responsive::Responsive;
+#[doc(no_inline)]
pub use row::Row;
#[doc(no_inline)]
pub use rule::Rule;