iced/wgpu/src/widget/radio.rs
Héctor Ramón Jiménez 05af8d00d4 Draft new iced_graphics crate 🎉
2020-05-19 17:15:44 +02:00

10 lines
317 B
Rust

//! Create choices using radio buttons.
use crate::Renderer;
pub use iced_graphics::radio::{Style, StyleSheet};
/// A circular button representing a choice.
///
/// This is an alias of an `iced_native` radio button with an
/// `iced_wgpu::Renderer`.
pub type Radio<Message> = iced_native::Radio<Message, Renderer>;