feat(widget): progress bars

This commit is contained in:
Ashley Wulber 2026-04-07 11:02:58 -04:00 committed by GitHub
parent 724351727a
commit b963fbfea9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 935 additions and 8 deletions

View file

@ -77,9 +77,6 @@ pub use iced::widget::{MouseArea, mouse_area};
#[doc(inline)]
pub use iced::widget::{PaneGrid, pane_grid};
#[doc(inline)]
pub use iced::widget::{ProgressBar, progress_bar};
#[doc(inline)]
pub use iced::widget::{Responsive, responsive};
@ -257,6 +254,12 @@ pub mod popover;
#[doc(inline)]
pub use popover::{Popover, popover};
pub mod progress_bar;
#[doc(inline)]
pub use progress_bar::{
circular, circular::Circular, circular_progress, linear, linear::Linear, linear_progress, style,
};
pub mod radio;
#[doc(inline)]
pub use radio::{Radio, radio};