summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-21 17:22:46 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-21 17:22:46 +0700
commit989c56292096e512c325a745013c5da86066d0e7 (patch)
treed343d1dbe1448922e7144aa4a239744d1443c9b6 /src
parent497a3ca8abb99f2bf25083a51388146433fe90a9 (diff)
downloadiced-989c56292096e512c325a745013c5da86066d0e7.tar.gz
iced-989c56292096e512c325a745013c5da86066d0e7.tar.bz2
iced-989c56292096e512c325a745013c5da86066d0e7.zip
Implement `pure` version of `QRCode` widget
Diffstat (limited to 'src')
-rw-r--r--src/pure/widget.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pure/widget.rs b/src/pure/widget.rs
index e9a533ea..39ccd090 100644
--- a/src/pure/widget.rs
+++ b/src/pure/widget.rs
@@ -139,6 +139,9 @@ pub use toggler::Toggler;
#[cfg(feature = "canvas")]
pub use iced_graphics::widget::pure::canvas;
+#[cfg(feature = "qr_code")]
+pub use iced_graphics::widget::pure::qr_code;
+
#[cfg(feature = "image")]
pub mod image {
//! Display images in your user interface.
@@ -151,5 +154,8 @@ pub mod image {
#[cfg(feature = "canvas")]
pub use canvas::Canvas;
+#[cfg(feature = "qr_code")]
+pub use qr_code::QRCode;
+
#[cfg(feature = "image")]
pub use image::Image;