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 creating a FormItem with a Label and a Slider the alignement of the label and the slider does not look correct.
Create a FormItem with label and slice.
details := widget.NewForm( widget.NewFormItem("Title", widget.NewEntry()), widget.NewFormItem("Description", widget.NewMultiLineEntry()), widget.NewFormItem("Category", widget.NewSelect( []string{"Home"}, func(s string) {})), widget.NewFormItem("Priority", widget.NewRadioGroup( []string{"Low", "Mid", "High"}, func(s string) {})), widget.NewFormItem("Due", widget.NewEntry()), widget.NewFormItem("Completion", widget.NewSlider(0, 100))4, )
fyne cli version: v2.4.4
go1.22.0 darwin/amd64
macOS Sonoma 14.3.1
No response
The text was updated successfully, but these errors were encountered:
Fix the slider min size to include the innerpadding ammount
c83011a
Fixes fyne-io#4714
This is now resolved on the develop branch which will be released as v2.5.0
develop
Sorry, something went wrong.
andydotxyz
No branches or pull requests
Checklist
Describe the bug
When creating a FormItem with a Label and a Slider the alignement of the label and the slider does not look correct.
How to reproduce
Create a FormItem with label and slice.
Screenshots
Example code
Fyne version
fyne cli version: v2.4.4
Go compiler version
go1.22.0 darwin/amd64
Operating system and version
macOS Sonoma 14.3.1
Additional Information
No response
The text was updated successfully, but these errors were encountered: