blob: 506d634f51cae583620c4621a8e895f58654e5e6 (
plain) (
tree)
|
|
//! Provide progress feedback to your users.
use iced_core::Background;
/// The appearance of a progress bar.
#[derive(Debug, Clone, Copy)]
pub struct Appearance {
pub background: Background,
pub bar: Background,
pub border_radius: f32,
}
/// A set of rules that dictate the style of a progress bar.
pub trait StyleSheet {
type Style: Default;
fn appearance(&self, style: &Self::Style) -> Appearance;
}
|