import "fyne.io/fyne/v2/widget"
  

Usage

type SelectEntry

  type SelectEntry struct {
	Entry
}
  

SelectEntry is an input field which supports selecting from a fixed set of options.

func NewSelectEntry

  func NewSelectEntry(options []string) *SelectEntry
  

NewSelectEntry creates a SelectEntry.

func (*SelectEntry) CreateRenderer

  func (e *SelectEntry) CreateRenderer() fyne.WidgetRenderer
  

CreateRenderer returns a new renderer for this select entry.

func (*SelectEntry) Disable

  func (e *SelectEntry) Disable()
  

Disable this widget so that it cannot be interacted with, updating any style appropriately.

func (*SelectEntry) Enable

  func (e *SelectEntry) Enable()
  

Enable this widget, updating any style or features appropriately.

func (*SelectEntry) MinSize

  func (e *SelectEntry) MinSize() fyne.Size
  

MinSize returns the minimal size of the select entry.

func (*SelectEntry) Move

  func (e *SelectEntry) Move(pos fyne.Position)
  

Move changes the relative position of the select entry.

func (*SelectEntry) Resize

  func (e *SelectEntry) Resize(size fyne.Size)
  

Resize changes the size of the select entry.

func (*SelectEntry) SetOptions

  func (e *SelectEntry) SetOptions(options []string)
  

SetOptions sets the options the user might select from.