Draft new iced_graphics crate 🎉
This commit is contained in:
parent
d4743183d4
commit
05af8d00d4
100 changed files with 861 additions and 1755 deletions
10
graphics/src/widget/checkbox.rs
Normal file
10
graphics/src/widget/checkbox.rs
Normal file
|
|
@ -0,0 +1,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>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue