summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/progress_bar.rs
blob: 34450b5e51c7b00ed8789b81fc47d3e7ec5eeafe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Allow your users to perform actions by pressing a button.
//!
//! A [`Button`] has some local [`State`].
//!
//! [`Button`]: type.Button.html
//! [`State`]: struct.State.html
use crate::Renderer;

pub use iced_style::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>;