mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-26 09:44:33 +00:00
14 lines
189 B
QML
14 lines
189 B
QML
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
|
|
}
|
|
}
|