CheckboxField
| 110 | // CheckboxField |
| 111 | |
| 112 | type CheckboxField struct { |
| 113 | label string |
| 114 | checked bool |
| 115 | disabledFn func() (disabled bool, text string) |
| 116 | } |
| 117 | |
| 118 | func NewCheckboxField(label string, checked bool) *CheckboxField { |
| 119 | return &CheckboxField{label: label, checked: checked} |
nothing calls this directly
no outgoing calls
no test coverage detected