Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Index = &ice.Context{Name: "fyne", Help: "fyne", Configs: map[string]*ice.Config{}, Commands: map[string]*ice.Command{ "field": {Name: "field", Help: "field", Hand: func(m *ice.Message, c *ice.Context, key string, arg ...string) { if len(arg) == 0 { arg = append(arg, "space") } newField(m, kit.Select("contexts", m.Option("title"))).update(m.Cmd(arg)) }}, "hide": {Name: "hide", Help: "hide", Hand: func(m *ice.Message, c *ice.Context, key string, arg ...string) { field := m.Optionv("field").(*Field) field.w.Hide() }}, "close": {Name: "close", Help: "close", Hand: func(m *ice.Message, c *ice.Context, key string, arg ...string) { field := m.Optionv("field").(*Field) field.w.Close() }}, }, }
Functions ¶
This section is empty.
Types ¶
type Board ¶
type Board struct { *widget.ScrollContainer // contains filtered or unexported fields }
type Field ¶
Click to show internal directories.
Click to hide internal directories.