forked from tslocum/cview
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
15 lines
345 B
// Demo code for the Button primitive. |
|
package main |
|
|
|
import "git.sr.ht/~tslocum/cview" |
|
|
|
func main() { |
|
app := cview.NewApplication() |
|
button := cview.NewButton("Hit Enter to close").SetSelectedFunc(func() { |
|
app.Stop() |
|
}) |
|
button.SetBorder(true).SetRect(0, 0, 22, 3) |
|
if err := app.SetRoot(button, false).Run(); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|