Skip to content

Instantly share code, notes, and snippets.

@jfjensen
Last active March 15, 2022 12:23
Show Gist options
  • Save jfjensen/cba7e06333a7002863b04f853479c11d to your computer and use it in GitHub Desktop.
Save jfjensen/cba7e06333a7002863b04f853479c11d to your computer and use it in GitHub Desktop.
Creating a widget to list our data items
list := widget.NewListWithData(data,
func() fyne.CanvasObject {
return widget.NewLabel("template")
},
func(i binding.DataItem, o fyne.CanvasObject) {
o.(*widget.Label).Bind(i.(binding.String))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment