1
0
mirror of https://github.com/rivo/tview.git synced 2025-04-28 13:48:53 +08:00
tview/demos/button/main.go

15 lines
320 B
Go
Raw Normal View History

2017-12-27 16:05:00 +01:00
package main
import "github.com/rivo/tview"
func main() {
app := tview.NewApplication()
button := tview.NewButton("Hit Enter to close").SetSelectedFunc(func() {
app.Stop()
})
button.SetBorder(true).SetRect(0, 0, 22, 3)
if err := app.SetRoot(button, false).SetFocus(button).Run(); err != nil {
panic(err)
}
}