iced-yoda/core/src/widget.rs

34 lines
574 B
Rust
Raw Normal View History

2019-09-20 19:15:31 +02:00
//! 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};
//! ```
2019-09-24 15:15:34 +02:00
mod checkbox;
2019-09-20 19:15:31 +02:00
mod column;
2019-09-24 15:15:34 +02:00
mod image;
mod radio;
2019-09-20 19:15:31 +02:00
mod row;
pub mod button;
pub mod slider;
pub mod text;
2019-09-24 15:15:34 +02:00
#[doc(no_inline)]
2019-09-20 19:15:31 +02:00
pub use button::Button;
2019-09-24 15:15:34 +02:00
#[doc(no_inline)]
pub use slider::Slider;
#[doc(no_inline)]
pub use text::Text;
2019-09-20 19:15:31 +02:00
pub use checkbox::Checkbox;
pub use column::Column;
pub use image::Image;
pub use radio::Radio;
pub use row::Row;