mirror of
https://github.com/rivo/tview.git
synced 2024-11-15 06:12:46 +00:00
16 lines
359 B
Go
16 lines
359 B
Go
// Demo code for the Button primitive.
|
|
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)
|
|
}
|
|
}
|