diff options
author | 2019-09-15 18:53:13 +0200 | |
---|---|---|
committer | 2019-09-15 18:53:13 +0200 | |
commit | 655978f480c32bc696f0d5fe2fff834bfbf238ea (patch) | |
tree | ee9af0e0e802c7f85004fd28d3854dbb8bfcb4f5 /src/widget/radio.rs | |
parent | 8834772fa70850559f7bd82cc8432394e3fd9db7 (diff) | |
download | iced-655978f480c32bc696f0d5fe2fff834bfbf238ea.tar.gz iced-655978f480c32bc696f0d5fe2fff834bfbf238ea.tar.bz2 iced-655978f480c32bc696f0d5fe2fff834bfbf238ea.zip |
Draft nodes for missing widgets
Diffstat (limited to 'src/widget/radio.rs')
-rw-r--r-- | src/widget/radio.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/widget/radio.rs b/src/widget/radio.rs index 28353ef4..27c0ff17 100644 --- a/src/widget/radio.rs +++ b/src/widget/radio.rs @@ -47,9 +47,12 @@ use std::hash::Hash; /// ///  pub struct Radio<Color, Message> { - is_selected: bool, - on_click: Message, - label: String, + /// Whether the radio button is selected or not + pub is_selected: bool, + /// The message to produce when the radio button is clicked + pub on_click: Message, + /// The label of the radio button + pub label: String, label_color: Option<Color>, } |