iced-yoda/style/src/lib.rs

25 lines
693 B
Rust
Raw Normal View History

2020-01-20 09:49:17 +01:00
//! The styling library of Iced.
//!
//! It contains a set of styles and stylesheets for most of the built-in
//! widgets.
2020-11-26 07:22:03 +01:00
//!
//! ![The foundations of the Iced ecosystem](https://github.com/iced-rs/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/foundations.png?raw=true)
2021-12-08 08:04:46 +01:00
#![doc(
2021-12-09 15:10:38 +07:00
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
2021-12-08 08:04:46 +01:00
)]
pub use iced_core::{Background, Color};
pub mod button;
2020-01-07 02:54:54 +01:00
pub mod checkbox;
pub mod container;
pub mod menu;
pub mod pane_grid;
2020-07-10 02:50:47 +02:00
pub mod pick_list;
2020-01-07 01:53:26 +01:00
pub mod progress_bar;
2020-01-07 02:25:57 +01:00
pub mod radio;
2020-08-13 12:54:34 -05:00
pub mod rule;
2020-01-06 21:01:09 +01:00
pub mod scrollable;
2020-01-07 00:28:08 +01:00
pub mod slider;
2020-01-01 18:26:49 +01:00
pub mod text_input;
pub mod toggler;