import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Window 2.12 Window { width: 375 height: 780 visible: true title: qsTr("Hello World") Column { anchors.bottom: parent.bottom anchors.bottomMargin: 50 anchors.horizontalCenter: parent.horizontalCenter width: parent.width * 0.7 spacing: 10 Label { text: qsTr("Label") } TextField { width: parent.width } } }