2
0
mirror of https://github.com/rivo/tview.git synced 2024-11-19 03:25:34 +00:00
tview/demos/checkbox/main.go
2017-12-27 16:05:00 +01:00

12 lines
257 B
Go

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)
}
}