Implement styling for Radio
This commit is contained in:
parent
48b3b78a38
commit
387fc0be26
9 changed files with 145 additions and 38 deletions
10
wgpu/src/widget/radio.rs
Normal file
10
wgpu/src/widget/radio.rs
Normal 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>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue