Implement pure version of QRCode widget
This commit is contained in:
parent
497a3ca8ab
commit
989c562920
3 changed files with 73 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue