Add Toggler widget to iced_web

This commit is contained in:
Kaiden42 2020-10-03 18:26:31 +02:00 committed by Héctor Ramón
parent c0cfd9d5cf
commit e00fca6372
3 changed files with 215 additions and 0 deletions

View file

@ -24,6 +24,7 @@ pub mod radio;
pub mod scrollable;
pub mod slider;
pub mod text_input;
pub mod toggler;
mod column;
mod row;
@ -40,6 +41,8 @@ pub use slider::Slider;
pub use text::Text;
#[doc(no_inline)]
pub use text_input::TextInput;
#[doc(no_inline)]
pub use toggler::Toggler;
pub use checkbox::Checkbox;
pub use column::Column;