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.
23 lines
547 B
23 lines
547 B
// Demo code for the DropDown primitive. |
|
package main |
|
|
|
import "code.rocketnine.space/tslocum/cview" |
|
|
|
func main() { |
|
app := cview.NewApplication() |
|
app.EnableMouse(true) |
|
|
|
dropdown := cview.NewDropDown() |
|
dropdown.SetLabel("Select an option (hit Enter): ") |
|
dropdown.SetOptions(nil, |
|
cview.NewDropDownOption("First"), |
|
cview.NewDropDownOption("Second"), |
|
cview.NewDropDownOption("Third"), |
|
cview.NewDropDownOption("Fourth"), |
|
cview.NewDropDownOption("Fifth")) |
|
|
|
app.SetRoot(dropdown, true) |
|
if err := app.Run(); err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|