summaryrefslogblamecommitdiffstats
path: root/core/src/widget.rs
blob: 3ee8e3471b834148fe020d7b2cd0b68531ba63b6 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                          
             
           

          


               
                   


               
                 
                       






                       


                               




                           
//! 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 scrollable;
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;

#[doc(no_inline)]
pub use scrollable::Scrollable;

pub use checkbox::Checkbox;
pub use column::Column;
pub use image::Image;
pub use radio::Radio;
pub use row::Row;