dropdowns.go 412 B

1234567891011121314151617
  1. package ui
  2. import (
  3. "github.com/rivo/tview"
  4. )
  5. func NewGuildsDropDown(onGuildsDropDownSelected func(text string, index int)) (guildsDropDown *tview.DropDown) {
  6. guildsDropDown = tview.NewDropDown().
  7. SetLabel("Guild: ").
  8. SetSelectedFunc(onGuildsDropDownSelected)
  9. guildsDropDown.
  10. SetFieldBackgroundColor(tview.Styles.PrimitiveBackgroundColor).
  11. SetBorder(true).
  12. SetBorderPadding(0, 0, 1, 1)
  13. return
  14. }