diff options
author | 2022-03-09 18:59:40 +0700 | |
---|---|---|
committer | 2022-03-09 19:14:55 +0700 | |
commit | 0cddb3c1b55017cda29d32924514e917a389f11b (patch) | |
tree | 4702af4335a726b237de05dbf83dd62848c9f0cb /graphics/src/widget/pure.rs | |
parent | c52fd089f102be4e2ac07952106e2b6924e72e68 (diff) | |
download | iced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.gz iced-0cddb3c1b55017cda29d32924514e917a389f11b.tar.bz2 iced-0cddb3c1b55017cda29d32924514e917a389f11b.zip |
Implement `pure` version of `Canvas` widget
Diffstat (limited to 'graphics/src/widget/pure.rs')
-rw-r--r-- | graphics/src/widget/pure.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/graphics/src/widget/pure.rs b/graphics/src/widget/pure.rs new file mode 100644 index 00000000..3ecbadf1 --- /dev/null +++ b/graphics/src/widget/pure.rs @@ -0,0 +1,6 @@ +//! Leverage pure, virtual widgets in your application. +#[cfg(feature = "canvas")] +pub mod canvas; + +#[cfg(feature = "canvas")] +pub use canvas::Canvas; |