summaryrefslogtreecommitdiffstats
path: root/wgpu/src/widget/progress_bar.rs
blob: 45a25d004de63c8cbffcaeffa69f6f3c6b781552 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Allow your users to visually track the progress of a computation.
//!
//! A [`ProgressBar`] has a range of possible values and a current value,
//! as well as a length, height and style.
use crate::Renderer;

pub use iced_graphics::progress_bar::{Style, StyleSheet};

/// A bar that displays progress.
///
/// This is an alias of an `iced_native` progress bar with an
/// `iced_wgpu::Renderer`.
pub type ProgressBar = iced_native::ProgressBar<Renderer>;