iced/core/src/lib.rs
Héctor Ramón Jiménez 10e10e5e06 Make iced_core::Button customizable
Now it supports:
  - Any kind of content
  - Custom border radius
  - Custom background
2019-10-08 03:13:41 +02:00

20 lines
340 B
Rust

pub mod widget;
mod align;
mod background;
mod color;
mod justify;
mod length;
mod point;
mod rectangle;
mod vector;
pub use align::Align;
pub use background::Background;
pub use color::Color;
pub use justify::Justify;
pub use length::Length;
pub use point::Point;
pub use rectangle::Rectangle;
pub use vector::Vector;
pub use widget::*;