summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-09 18:59:40 +0700
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-03-09 19:14:55 +0700
commit0cddb3c1b55017cda29d32924514e917a389f11b (patch)
tree4702af4335a726b237de05dbf83dd62848c9f0cb /graphics/src/widget.rs
parentc52fd089f102be4e2ac07952106e2b6924e72e68 (diff)
downloadiced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.gz
iced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.bz2
iced-0cddb3c1b55017cda29d32924514e917a389f11b.zip
Implement `pure` version of `Canvas` widget
Diffstat (limited to 'graphics/src/widget.rs')
-rw-r--r--graphics/src/widget.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/src/widget.rs b/graphics/src/widget.rs
index e7fab97c..cf500a69 100644
--- a/graphics/src/widget.rs
+++ b/graphics/src/widget.rs
@@ -14,3 +14,6 @@ pub mod qr_code;
#[cfg(feature = "qr_code")]
#[doc(no_inline)]
pub use qr_code::QRCode;
+
+#[cfg(feature = "pure")]
+pub mod pure;