import QtQuick import QtQuick.Controls import QtQuick.Layouts Window { width: 640 height: 480 visible: true title: qsTr("Hello World") ColumnLayout { spacing: 30 anchors.centerIn: parent TextField { text: "This is some text you can copy" selectByMouse: true Layout.preferredWidth: 250 } TextField { text: "" placeholderText: "Paste here" selectByMouse: true Layout.preferredWidth: 250 } Item { Layout.preferredHeight: 300 } } }