iced-yoda/glow/src/widget/checkbox.rs

10 lines
307 B
Rust
Raw Normal View History

//! Show toggle controls using checkboxes.
use crate::Renderer;
2020-05-19 17:15:44 +02:00
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<Message> = iced_native::Checkbox<Message, Renderer>;