2018-01-04 04:13:32 +08:00
|
|
|
// Demo code for the Button primitive.
|
2017-12-27 23:05:00 +08: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)
|
2020-03-28 01:41:44 +08:00
|
|
|
if err := app.SetRoot(button, false).EnableMouse(true).Run(); err != nil {
|
2017-12-27 23:05:00 +08:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|