summaryrefslogtreecommitdiffstats
path: root/lazy/src/lib.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 11:15:05 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-01-12 11:15:05 +0700
commit870d651f35c4dad12c805951fca70213816983de (patch)
treedcf50e912ca3e7823e07aee635c7e5f464b5bd66 /lazy/src/lib.rs
parent5a03cac7e75ccb8ca87a97def723694be0471742 (diff)
downloadiced-870d651f35c4dad12c805951fca70213816983de.tar.gz
iced-870d651f35c4dad12c805951fca70213816983de.tar.bz2
iced-870d651f35c4dad12c805951fca70213816983de.zip
Implement `Widget::overlay` for `Responsive` widget
Diffstat (limited to '')
-rw-r--r--lazy/src/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/lazy/src/lib.rs b/lazy/src/lib.rs
index 42e5f587..05fce765 100644
--- a/lazy/src/lib.rs
+++ b/lazy/src/lib.rs
@@ -1,3 +1,9 @@
pub mod component;
+pub mod responsive;
pub use component::Component;
+pub use responsive::Responsive;
+
+mod cache;
+
+use cache::{Cache, CacheBuilder};