add missing glow support
This commit is contained in:
parent
7370dfac6e
commit
88da268724
2 changed files with 12 additions and 0 deletions
9
glow/src/widget/toggler.rs
Normal file
9
glow/src/widget/toggler.rs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
//! Show toggle controls using togglers.
|
||||
use crate::Renderer;
|
||||
|
||||
pub use iced_graphics::toggler::{Style, StyleSheet};
|
||||
|
||||
/// A toggler that can be toggled.
|
||||
///
|
||||
/// This is an alias of an `iced_native` checkbox with an `iced_wgpu::Renderer`.
|
||||
pub type Toggler<Message> = iced_native::Toggler<Message, Renderer>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue