4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-03 13:09:34 +00:00
2018-12-26 18:01:13 +03:00

15 lines
209 B
QML

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