iced_aw/
style.rs

1//! The appearance of the widget
2
3pub mod colors;
4pub mod status;
5pub mod style_state;
6
7pub use status::{Status, StyleFn};
8
9#[cfg(feature = "badge")]
10pub mod badge;
11
12#[cfg(feature = "card")]
13pub mod card;
14
15#[cfg(feature = "color_picker")]
16pub mod color_picker;
17
18#[cfg(feature = "date_picker")]
19pub mod date_picker;
20
21#[cfg(feature = "tab_bar")]
22pub mod tab_bar;
23
24#[cfg(feature = "time_picker")]
25pub mod time_picker;
26
27#[cfg(feature = "number_input")]
28pub mod number_input;
29
30#[cfg(feature = "selection_list")]
31pub mod selection_list;
32
33#[cfg(feature = "menu")]
34pub mod menu_bar;
35
36#[cfg(feature = "context_menu")]
37pub mod context_menu;
38
39#[cfg(feature = "sidebar")]
40pub mod sidebar;