4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-03 21:19:34 +00:00
2022-08-27 22:30:55 +03:00

14 lines
194 B
QML

import QtQuick.Controls 2.3
Page {
width: 600
height: 400
title: qsTr("Home")
Label {
text: qsTr("You are on the home page.")
anchors.centerIn: parent
}
}