diff options
| author | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 15:16:28 +0700 |
|---|---|---|
| committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-02 15:16:28 +0700 |
| commit | 284c2d501022d23e4cd860176443c5a502443f2f (patch) | |
| tree | 6d90bb8f6dc024a0f083be70f8c904935d1d99af /HomeForm.ui.qml | |
initial commit
Diffstat (limited to 'HomeForm.ui.qml')
| -rw-r--r-- | HomeForm.ui.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/HomeForm.ui.qml b/HomeForm.ui.qml new file mode 100644 index 0000000..2df9430 --- /dev/null +++ b/HomeForm.ui.qml @@ -0,0 +1,12 @@ +import QtQuick 2.15 +import QtQuick.Controls 2.15 + +Page { + + title: qsTr("Home") + + Label { + text: qsTr("You are on the home page.") + anchors.centerIn: parent + } +} |