import QtQuick 2.7 import QtQuick.Controls 2.15 import QtQuick.Window 2.0 ApplicationWindow { id: window width: 640 height: 480 visible: true Label { id: usernameLabel text: "Username" } TextField { id: usernameField anchors.top: usernameLabel.bottom } Label { id: passwordLabel text: "Password" anchors.top: usernameField.bottom } TextField { id: passwordField echoMode: TextInput.Password anchors.top: passwordLabel.bottom } Button { id: loginButton text: "Login" anchors.top: passwordField.bottom onClicked: print("Hooray!"); } }