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
When I try to extend a Form widget and append rows to it, the first row is duplicated.
See code below
This what I get from the code below:
This what I would expect:
package main import ( "fyne.io/fyne/app" "fyne.io/fyne/widget" ) type MyForm struct { widget.Form } func NewMyForm() *MyForm { name := widget.NewEntry() form := &MyForm{} form.ExtendBaseWidget(form) form.Append("Name", name) return form } func main() { a := app.New() w := a.NewWindow("Hello") w.SetContent(NewMyForm()) w.ShowAndRun() }
The text was updated successfully, but these errors were encountered:
Thanks, it seems we missed Form when the widget extending code was added...
Sorry, something went wrong.
Fix widget extending for Form
4f81a66
Fixes #694
91c972f
Resolved on the releases/v1.2.3 branch, release pending
andydotxyz
No branches or pull requests
Describe the bug:
When I try to extend a Form widget and append rows to it, the first row is duplicated.
To Reproduce:
See code below
Screenshots:
This what I get from the code below:
This what I would expect:
Example code:
Device
The text was updated successfully, but these errors were encountered: