()
| 218 | func (r ButtonResult) Exists() bool { return r.found } |
| 219 | |
| 220 | func (r ButtonResult) Click() { |
| 221 | if r.handler != nil { |
| 222 | r.handler() |
| 223 | } |
| 224 | if r.tree != nil { |
| 225 | r.tree.Rerender() |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | type ToggleResult struct { |
| 230 | Label string |