diff options
author | 2022-08-04 21:25:36 -0700 | |
---|---|---|
committer | 2022-11-03 02:23:19 +0100 | |
commit | 71381418116afc1f9c40c8faf2cb1e53072a1cfa (patch) | |
tree | f8c3937d3951656f7c8ed0468f218d9623e24a32 /lazy/src/lib.rs | |
parent | 08e28f6f97c7e656f0d2f1d3fb0f6fe3c280d464 (diff) | |
download | iced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.tar.gz iced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.tar.bz2 iced-71381418116afc1f9c40c8faf2cb1e53072a1cfa.zip |
feat: implement `Cached` widget
Diffstat (limited to '')
-rw-r--r-- | lazy/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lazy/src/lib.rs b/lazy/src/lib.rs index 3827746c..c01b439b 100644 --- a/lazy/src/lib.rs +++ b/lazy/src/lib.rs @@ -17,9 +17,11 @@ clippy::type_complexity )] #![cfg_attr(docsrs, feature(doc_cfg))] +pub mod cached; pub mod component; pub mod responsive; +pub use cached::Cached; pub use component::Component; pub use responsive::Responsive; |