blob: b19d660098fb542b25931c55f2b3d9e9de805d46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! The styling library of Iced.
//!
//! It contains a set of styles and stylesheets for most of the built-in
//! widgets.
pub use iced_core::{Background, Color};
pub mod button;
pub mod checkbox;
pub mod combo_box;
pub mod container;
pub mod menu;
pub mod progress_bar;
pub mod radio;
pub mod scrollable;
pub mod slider;
pub mod text_input;
|