4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-04-29 11:14:33 +00:00

14 lines
194 B
QML
Raw Normal View History

2022-08-17 17:59:48 +03:00
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
}
}