Skip to content

The input box is disappear one side when resize window #5631

Closed as not planned
@Hello-lingu

Description

@Hello-lingu

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

My enviroment

Debian 12 Kde 5 the newest of fyne
This is my code.

How to reproduce

run this program
then resize window slowly
you can see the inpur box disappear ont side

Screenshots

Image

Example code

package main

import (
	"fyne.io/fyne/v2/app"
	"fyne.io/fyne/v2/container"
	"fyne.io/fyne/v2/widget"
)

func makeUI() (*widget.Label, *widget.Entry) {
	out := widget.NewLabel("Hello world!")
	in := widget.NewEntry()

	in.OnChanged = func(content string) {
		out.SetText("Hello " + content + "!")
	}
	return out, in
}

func main() {
	app := app.New()
	win := app.NewWindow("Hello Person")

	win.SetContent(container.NewVBox(makeUI()))
	win.ShowAndRun()
}

Fyne version

2.5.5

Go compiler version

1.24.0

Operating system and version

Debian12 kde5

Additional Information

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    duplicateThis issue or pull request already exists

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions