Remove redundant widget modules in subcrates
Instead, we can define the type aliases just once in the root crate!
This commit is contained in:
parent
7d9ab71790
commit
12c1a3f829
62 changed files with 225 additions and 780 deletions
|
|
@ -1,12 +1,13 @@
|
|||
//! Organize rendering primitives into a flattened list of layers.
|
||||
use crate::alignment;
|
||||
use crate::image;
|
||||
use crate::svg;
|
||||
use crate::triangle;
|
||||
use crate::{
|
||||
Background, Font, Point, Primitive, Rectangle, Size, Vector, Viewport,
|
||||
};
|
||||
|
||||
use iced_native::image;
|
||||
use iced_native::svg;
|
||||
|
||||
/// A group of primitives that should be clipped together.
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Layer<'a> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue