Refactor imports in widget::canvas in iced_graphics

This commit is contained in:
Héctor Ramón Jiménez 2022-11-03 05:57:22 +01:00
parent 84d1b79fef
commit e9e2657791
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -3,17 +3,16 @@
//! A [`Canvas`] widget can be used to draw different kinds of 2D shapes in a
//! [`Frame`]. It can be used for animation, data visualization, game graphics,
//! and more!
pub mod event;
pub mod fill;
pub mod path;
pub mod stroke;
mod cache;
mod cursor;
pub mod fill;
pub(crate) mod frame;
mod frame;
mod geometry;
mod program;
pub mod stroke;
mod text;
pub use cache::Cache;