Fyne API "binding.IntList"

binding.IntList


import "fyne.io/fyne/v2/data/binding"

Usage

type IntList

type IntList interface {
	DataList

	Append(int) error
	Get() ([]int, error)
	GetValue(int) (int, error)
	Prepend(int) error
	Set([]int) error
	SetValue(int, int) error
}

IntList supports binding a list of int values.

Since: 2.0

func NewIntList

func NewIntList() IntList

NewIntList returns a bindable list of int values.

Since: 2.0