Implement ProgressBar widget in iced_web

This commit is contained in:
Héctor Ramón Jiménez 2020-02-06 01:24:40 +01:00
parent acfc815e1d
commit f5228695a2
2 changed files with 127 additions and 0 deletions

View file

@ -21,6 +21,7 @@ pub mod button;
pub mod checkbox;
pub mod container;
pub mod image;
pub mod progress_bar;
pub mod radio;
pub mod scrollable;
pub mod slider;
@ -46,6 +47,7 @@ pub use checkbox::Checkbox;
pub use column::Column;
pub use container::Container;
pub use image::Image;
pub use progress_bar::ProgressBar;
pub use radio::Radio;
pub use row::Row;
pub use space::Space;