-
-
Notifications
You must be signed in to change notification settings - Fork 571
Checkbox
rivo edited this page Dec 4, 2020
·
2 revisions
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)
}
}