From 66ff28a42a4f4a74fa196440f9686b344f07a121 Mon Sep 17 00:00:00 2001 From: wiiznokes <78230769+wiiznokes@users.noreply.github.com> Date: Wed, 28 Aug 2024 22:48:31 +0200 Subject: [PATCH] add reexport in widget module --- src/widget/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/widget/mod.rs b/src/widget/mod.rs index 8af22bb2..c526bd23 100644 --- a/src/widget/mod.rs +++ b/src/widget/mod.rs @@ -112,6 +112,10 @@ pub mod color_picker; #[doc(inline)] pub use color_picker::{ColorPicker, ColorPickerModel}; +#[cfg(feature = "qr_code")] +#[doc(inline)] +pub use iced::widget::qr_code; + pub mod context_drawer; #[doc(inline)] pub use context_drawer::{context_drawer, ContextDrawer};