(value any)
| 132 | } |
| 133 | |
| 134 | func (fb *FuncButton) SetWidgetValue(value any) error { |
| 135 | fb.SetFunc(reflectx.Underlying(reflect.ValueOf(value)).Interface()) |
| 136 | return nil |
| 137 | } |
| 138 | |
| 139 | func (fb *FuncButton) OnBind(value any, tags reflect.StructTag) { |
| 140 | // If someone is viewing a function value, there is a good chance |
nothing calls this directly
no test coverage detected