Skip to content
New issue

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

Label and Slider not aligned in a FormItem #4714

Closed
2 tasks done
msantux opened this issue Mar 11, 2024 · 1 comment
Closed
2 tasks done

Label and Slider not aligned in a FormItem #4714

msantux opened this issue Mar 11, 2024 · 1 comment
Assignees
Labels
unverified A bug that has been reported but not verified

Comments

@msantux
Copy link

msantux commented Mar 11, 2024

Checklist

  • I have searched the issue tracker for open issues that relate to the same problem, before opening a new one.
  • This issue only relates to a single bug. I will open new issues for any other problems.

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

image

Example code

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 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

@msantux msantux added the unverified A bug that has been reported but not verified label Mar 11, 2024
andydotxyz added a commit to andydotxyz/fyne that referenced this issue Apr 19, 2024
@andydotxyz
Copy link
Member

This is now resolved on the develop branch which will be released as v2.5.0

@andydotxyz andydotxyz self-assigned this Apr 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
unverified A bug that has been reported but not verified
Projects
None yet
Development

No branches or pull requests

2 participants