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

pub use iced_style::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<Message, Backend> =
    iced_native::Checkbox<Message, Renderer<Backend>>;