Draft new iced_graphics crate 🎉
This commit is contained in:
parent
d4743183d4
commit
05af8d00d4
100 changed files with 861 additions and 1755 deletions
11
graphics/src/widget/radio.rs
Normal file
11
graphics/src/widget/radio.rs
Normal file
|
|
@ -0,0 +1,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<Message, Backend> =
|
||||
iced_native::Radio<Message, Renderer<Backend>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue