diff options
author | 2022-01-13 15:42:40 +0700 | |
---|---|---|
committer | 2022-01-13 15:42:40 +0700 | |
commit | 15a13a76b4b0534d08afc0328b90267048e41b9d (patch) | |
tree | dd5fa045c9fd3f8f116f230c3e70dcba2d32d011 /lazy/src/lib.rs | |
parent | 1a31aefab401712e44cd613fc1337ab90579d926 (diff) | |
parent | f6c436aec1acb674078bf7e878b9e49f28e947a7 (diff) | |
download | iced-15a13a76b4b0534d08afc0328b90267048e41b9d.tar.gz iced-15a13a76b4b0534d08afc0328b90267048e41b9d.tar.bz2 iced-15a13a76b4b0534d08afc0328b90267048e41b9d.zip |
Merge pull request #1193 from iced-rs/responsive-widget
`Responsive` widget
Diffstat (limited to 'lazy/src/lib.rs')
-rw-r--r-- | lazy/src/lib.rs | 6 |
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}; |