We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Select widget does not gain focus when tapped.
No response
package main import ( "fmt" "fyne.io/fyne/v2/app" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/layout" "fyne.io/fyne/v2/widget" ) func main() { myApp := app.New() mainWin := myApp.NewWindow("Select Test") entry := widget.NewEntry() sel := widget.NewSelect([]string{"Item 1", "Item 2", "Item 3"}, selectChanged) button := widget.NewButton("OK", tapped) box := container.New(layout.NewVBoxLayout(), entry, sel, button) mainWin.SetContent(box) mainWin.ShowAndRun() } func selectChanged(value string) { fmt.Printf("Selected value = %v\n", value) } func tapped() { fmt.Println("In tapped") }
2.4.4
1.22.1
macOS 14.4.1
The text was updated successfully, but these errors were encountered:
Fixed on develop for v2.5.0
Sorry, something went wrong.
andydotxyz
No branches or pull requests
Checklist
Describe the bug
The Select widget does not gain focus when tapped.
How to reproduce
Screenshots
No response
Example code
Fyne version
2.4.4
Go compiler version
1.22.1
Operating system and version
macOS 14.4.1
Additional Information
No response
The text was updated successfully, but these errors were encountered: