28 lines
529 B
Rust
28 lines
529 B
Rust
|
|
//! 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 column;
|
||
|
|
mod row;
|
||
|
|
|
||
|
|
pub mod button;
|
||
|
|
pub mod checkbox;
|
||
|
|
pub mod image;
|
||
|
|
pub mod radio;
|
||
|
|
pub mod slider;
|
||
|
|
pub mod text;
|
||
|
|
|
||
|
|
pub use button::Button;
|
||
|
|
pub use checkbox::Checkbox;
|
||
|
|
pub use column::Column;
|
||
|
|
pub use image::Image;
|
||
|
|
pub use radio::Radio;
|
||
|
|
pub use row::Row;
|
||
|
|
pub use slider::Slider;
|
||
|
|
pub use text::Text;
|