summaryrefslogblamecommitdiffstats
path: root/wgpu/src/widget/toggler.rs
blob: dfcf759bd08a2f050087a71c51f1c160de2929f0 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                               
//! Show toggle controls using togglers.
use crate::Renderer;

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

/// A toggler that can be toggled
///
/// This is an alias of an `iced_native` toggler with an `iced_wgpu::Renderer`.
pub type Toggler<Message> = iced_native::Toggler<Message, Renderer>;