Implement styling for Radio

This commit is contained in:
Héctor Ramón Jiménez 2020-01-07 02:25:57 +01:00
parent 48b3b78a38
commit 387fc0be26
9 changed files with 145 additions and 38 deletions

10
wgpu/src/widget/radio.rs Normal file
View file

@ -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>;