Implement pure version of ProgressBar widget

This commit is contained in:
Héctor Ramón Jiménez 2022-03-10 17:01:57 +07:00
parent 0fbd1d98b5
commit 3efb59dea3
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
2 changed files with 114 additions and 0 deletions

View file

@ -1,4 +1,5 @@
pub mod image;
pub mod progress_bar;
pub mod rule;
pub mod tree;
@ -24,6 +25,7 @@ pub use container::Container;
pub use element::Element;
pub use image::Image;
pub use pick_list::PickList;
pub use progress_bar::ProgressBar;
pub use radio::Radio;
pub use row::Row;
pub use rule::Rule;
@ -43,6 +45,7 @@ use iced_native::renderer;
use iced_native::{Clipboard, Length, Point, Rectangle, Shell};
use std::borrow::Cow;
use std::ops::RangeInclusive;
pub trait Widget<Message, Renderer> {
fn width(&self) -> Length;
@ -246,3 +249,15 @@ pub fn horizontal_rule<'a>(height: u16) -> Rule<'a> {
pub fn vertical_rule<'a>(width: u16) -> Rule<'a> {
Rule::horizontal(width)
}
/// Creates a new [`ProgressBar`].
///
/// It expects:
/// * an inclusive range of possible values
/// * the current value of the [`ProgressBar`]
pub fn progress_bar<'a>(
range: RangeInclusive<f32>,
value: f32,
) -> ProgressBar<'a> {
ProgressBar::new(range, value)
}