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<Message> = iced_native::Radio<Message, Renderer>;
|