mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 13:25:51 +03:00
2
Button
rivo edited this page 2020-12-04 16:39:59 +01:00
A simple Button with a frame:
Code:
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)
}
}
