summaryrefslogtreecommitdiffstats
path: root/core/src/widget.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/widget.rs')
-rw-r--r--core/src/widget.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/core/src/widget.rs b/core/src/widget.rs
new file mode 100644
index 00000000..f9d4bf2a
--- /dev/null
+++ b/core/src/widget.rs
@@ -0,0 +1,33 @@
+//! Use the essential widgets.
+//!
+//! # Re-exports
+//! For convenience, the contents of this module are available at the root
+//! module. Therefore, you can directly type:
+//!
+//! ```
+//! use iced_core::{button, Button};
+//! ```
+mod checkbox;
+mod column;
+mod image;
+mod radio;
+mod row;
+
+pub mod button;
+pub mod slider;
+pub mod text;
+
+#[doc(no_inline)]
+pub use button::Button;
+
+#[doc(no_inline)]
+pub use slider::Slider;
+
+#[doc(no_inline)]
+pub use text::Text;
+
+pub use checkbox::Checkbox;
+pub use column::Column;
+pub use image::Image;
+pub use radio::Radio;
+pub use row::Row;