package ui import ( "github.com/gdamore/tcell/v2" "github.com/rigormorrtiss/discordo/util" "github.com/rivo/tview" ) func NewGuildsDropDown(onGuildsDropDownSelected func(text string, index int), theme *util.Theme) *tview.DropDown { guildsDropDown := tview.NewDropDown() guildsDropDown. SetLabel("Guild: "). SetSelectedFunc(onGuildsDropDownSelected). SetLabelColor(tcell.GetColor(theme.DropDownForeground)). SetFieldBackgroundColor(tcell.GetColor(theme.DropDownBackground)). SetFieldTextColor(tcell.GetColor(theme.DropDownForeground)). SetBackgroundColor(tcell.GetColor(theme.DropDownBackground)). SetBorder(true). SetBorderPadding(0, 0, 1, 1) return guildsDropDown }