mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 13:25:51 +03:00
2
DropDown
rivo edited this page 2020-12-04 16:41:02 +01:00
A simple DropDown selection:
Code:
package main
import "github.com/rivo/tview"
func main() {
app := tview.NewApplication()
dropdown := tview.NewDropDown().
SetLabel("Select an option (hit Enter): ").
SetOptions([]string{"First", "Second", "Third", "Fourth", "Fifth"}, nil)
if err := app.SetRoot(dropdown, true).SetFocus(dropdown).Run(); err != nil {
panic(err)
}
}
