iced-yoda/wgpu/src/widget/radio.rs

11 lines
333 B
Rust
Raw Normal View History

2020-01-07 02:25:57 +01:00
//! Create choices using radio buttons.
use crate::Renderer;
2020-05-19 17:15:44 +02:00
pub use iced_graphics::radio::{Style, StyleSheet};
2020-01-07 02:25:57 +01:00
/// A circular button representing a choice.
///
/// This is an alias of an `iced_native` radio button with an
/// `iced_wgpu::Renderer`.
pub type Radio<'a, Message> = iced_native::widget::Radio<'a, Message, Renderer>;