<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Resizing Issue]]></title><description><![CDATA[<p dir="auto">Hi,<br />
I have a window resizing issue.<br />
I have a label widget with a long text on top.<br />
Then I have a RowLayout widget with a label on the right and an input text field on the left.<br />
The behavior I want is for the input text field to remain visible when resizing the window by making it smaller. However, what I get is the input text field disappears when I make the window smaller.</p>
<p dir="auto">But when I make the top text smaller (by removing the second sentence), the input text field doesn't disappear when resizing the window.<br />
Can somebody help me, please? Here's my sample code.</p>
<pre><code>import QtQuick
import QtQuick.Window
import QtQuick.Controls
import QtQuick.Layouts

Window {
    id: window
    width: 640
    height: 480
    visible: true
    title: qsTr("Hello World")
    Layout.margins: 5

    ScrollView {
        id: scrollView
        anchors.fill: parent

        ColumnLayout {
            width: scrollView.availableWidth
            height: scrollView.availableHeight

            Label{
                wrapMode: Text.WordWrap
                width: window.width - 20
                Layout.minimumWidth: 200
                text: qsTr("Changes to the following settings are applied to the current document and to future documents. If you only wish to change the current document use the Invoice tab.")
            }

            RowLayout {
                Label{
                    text: qsTr("Invoice title")
                    Layout.fillWidth: true
                }

                TextField {
                    implicitWidth: 200
                    text: qsTr("Document")
                }
            }
        }
    }
}
</code></pre>
]]></description><link>https://forum.qt.io/topic/144523/resizing-issue</link><generator>RSS for Node</generator><lastBuildDate>Tue, 04 Aug 2026 12:42:22 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/144523.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 19 Apr 2023 21:34:44 GMT</pubDate><ttl>60</ttl></channel></rss>