diff options
Diffstat (limited to 'style/src/lib.rs')
-rw-r--r-- | style/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/style/src/lib.rs b/style/src/lib.rs new file mode 100644 index 00000000..2c5977b5 --- /dev/null +++ b/style/src/lib.rs @@ -0,0 +1,12 @@ +//! The styling library of Iced. +//! +//! It contains a set of styles and stylesheets for most of the built-in +//! widgets. +pub mod button; +pub mod checkbox; +pub mod container; +pub mod progress_bar; +pub mod radio; +pub mod scrollable; +pub mod slider; +pub mod text_input; |