iced/glow/src/widget/progress_bar.rs
Héctor Ramón Jiménez 05af8d00d4 Draft new iced_graphics crate 🎉
2020-05-19 17:15:44 +02:00

15 lines
446 B
Rust

//! 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_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>;