//! Create choices using radio buttons. use crate::{Backend, Renderer}; use iced_native::radio; 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 = iced_native::Radio>; impl radio::Renderer for Renderer where B: Backend, { type Style = Box; const DEFAULT_SIZE: u16 = 28; const DEFAULT_SPACING: u16 = 15; }