2 Checkbox
rivo edited this page 2020-12-04 16:40:44 +01:00

A simple Checkbox:

Code:

package main

import "github.com/rivo/tview"

func main() {
	app := tview.NewApplication()
	checkbox := tview.NewCheckbox().SetLabel("Hit Enter to check box: ")
	if err := app.SetRoot(checkbox, true).SetFocus(checkbox).Run(); err != nil {
		panic(err)
	}
}

See also: https://pkg.go.dev/github.com/rivo/tview#Checkbox