iced/graphics/src/widget/radio.rs
2021-10-31 16:14:34 +07:00

11 lines
352 B
Rust

//! Create choices using radio buttons.
use crate::Renderer;
pub use iced_style::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<'a, Message, Backend> =
iced_native::widget::Radio<'a, Message, Renderer<Backend>>;