Upgrade to v2.5
Fyne API v2.5
app
canvas
container
data/binding
package binding
Bool
BoolList
BoolTree
Bytes
BytesList
BytesTree
DataItem
DataList
DataListener
DataMap
DataTree
ExternalBool
ExternalBoolList
ExternalBoolTree
ExternalBytes
ExternalBytesList
ExternalBytesTree
ExternalFloat
ExternalFloatList
ExternalFloatTree
ExternalInt
ExternalIntList
ExternalIntTree
ExternalRune
ExternalRuneList
ExternalRuneTree
ExternalString
ExternalStringList
ExternalStringTree
ExternalUntyped
ExternalUntypedList
ExternalUntypedMap
ExternalUntypedTree
ExternalURI
ExternalURIList
ExternalURITree
Float
FloatList
FloatTree
Int
IntList
IntTree
Rune
RuneList
RuneTree
String
StringList
StringTree
Struct
Untyped
UntypedList
UntypedMap
UntypedTree
URI
URIList
URITree
data/validation
dialog
driver
driver/desktop
driver/mobile
driver/software
lang
layout
storage
storage/repository
test
theme
widget
Fyne API "binding.RuneList"
binding.RuneList
import "fyne.io/fyne/v2/data/binding"
Usage
type RuneList
type RuneList interface {
DataList
Append(value rune) error
Get() ([]rune, error)
GetValue(index int) (rune, error)
Prepend(value rune) error
Remove(value rune) error
Set(list []rune) error
SetValue(index int, value rune) error
}
RuneList supports binding a list of rune values.
Since:
2.0
func NewRuneList
func NewRuneList() RuneList
NewRuneList returns a bindable list of rune values.
Since:
2.0