blob: c200f1a860b4c3ce36ddfce86b5d7251b11c59a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
//! 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<'a, Message> = iced_native::Radio<'a, Message, Renderer>;
|