summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/checkbox.rs
blob: 0d2e93f9fb17dd5b72512e3117ab7d6be3558be8 (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<'a, Message, Backend> =
    iced_native::widget::Checkbox<'a, Message, Renderer<Backend>>;