import QtQuick.Controls ApplicationWindow { visible: true width: 400 height: 600 Column { anchors.centerIn: parent spacing: 10 TextField { placeholderText: "Type something" } Slider { from: 0; to: 100 } Button { text: "Click me" onClicked: console.log("Clicked") } } }