NewCheckBox creates and returns a pointer to a new CheckBox widget with the specified text
(text string)
| 45 | // NewCheckBox creates and returns a pointer to a new CheckBox widget |
| 46 | // with the specified text |
| 47 | func NewCheckBox(text string) *CheckRadio { |
| 48 | |
| 49 | return newCheckRadio(true, text) |
| 50 | } |
| 51 | |
| 52 | // NewRadioButton creates and returns a pointer to a new RadioButton widget |
| 53 | // with the specified text |
no test coverage detected