summaryrefslogtreecommitdiffstats
path: root/wgpu/src/widget/checkbox.rs
blob: 9fd003d4d6591d1b060ce034e6876df407cb8b28 (plain) (blame)
1
2
3
4
5
6
7
8
9
//! Show toggle controls using checkboxes.
use crate::Renderer;

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

/// A box that can be checked.
///
/// This is an alias of an `iced_native` checkbox with an `iced_wgpu::Renderer`.
pub type Checkbox<'a, Message> = iced_native::Checkbox<'a, Message, Renderer>;