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`.
|
2021-10-31 15:35:12 +07:00
|
|
|
pub type Radio<'a, Message> = iced_native::widget::Radio<'a, Message, Renderer>;
|