summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/radio.rs
blob: 4185bd614fea46804656d39224410a5a367a86b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
//! 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::Radio<'a, Message, Renderer<Backend>>;