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.
19 lines
338 B
19 lines
338 B
// Demo code for the CheckBox primitive. |
|
package main |
|
|
|
import ( |
|
"code.rocketnine.space/tslocum/cview" |
|
) |
|
|
|
func main() { |
|
app := cview.NewApplication() |
|
app.EnableMouse(true) |
|
|
|
checkbox := cview.NewCheckBox() |
|
checkbox.SetLabel("Hit Enter to check box: ") |
|
|
|
app.SetRoot(checkbox, true) |
|
if err := app.Run(); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|