mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 18:54:33 +00:00
15 lines
214 B
QML
15 lines
214 B
QML
import QtQuick 2.10
|
|
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
|
|
}
|
|
}
|