On this page
binding.UntypedMap
import "fyne.io/fyne/v2/data/binding"Usage
type UntypedMap
type UntypedMap interface {
DataMap
Delete(string)
Get() (map[string]any, error)
GetValue(string) (any, error)
Set(map[string]any) error
SetValue(string, any) error
}UntypedMap is a map data binding with all values Untyped (any).
Since:
2.0func NewUntypedMap
func NewUntypedMap() UntypedMapNewUntypedMap creates a new, empty map binding of string to any.
Since:
2.0