summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/radio.rs
diff options
context:
space:
mode:
Diffstat (limited to 'glow/src/widget/radio.rs')
-rw-r--r--glow/src/widget/radio.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/glow/src/widget/radio.rs b/glow/src/widget/radio.rs
new file mode 100644
index 00000000..6e5cf042
--- /dev/null
+++ b/glow/src/widget/radio.rs
@@ -0,0 +1,10 @@
+//! 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<Message> = iced_native::Radio<Message, Renderer>;