From b7cb1b31ff1846d0dcc74bf4020f3414d82b4f22 Mon Sep 17 00:00:00 2001 From: Michael Aaron Murphy Date: Wed, 29 May 2024 23:57:26 +0200 Subject: [PATCH] feat(widget): re-export canvas widget from iced --- src/widget/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/widget/mod.rs b/src/widget/mod.rs index 9530d060..a20861d4 100644 --- a/src/widget/mod.rs +++ b/src/widget/mod.rs @@ -47,6 +47,9 @@ //! ``` // Re-exports from Iced +#[doc(inline)] +pub use iced::widget::{canvas, Canvas}; + #[doc(inline)] pub use iced::widget::{checkbox, Checkbox};