diff options
| author | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-05 23:27:11 +0700 |
|---|---|---|
| committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2020-12-05 23:27:11 +0700 |
| commit | 6fe925388058a83dcfad964bd73dc0b29250d330 (patch) | |
| tree | ad63beeb94f485c2ab0e7acb7d9c04f6ae647e79 /pages/HomeForm.ui.qml | |
| parent | 9fef42ac006e3ed1f2fb3180e4ae39c60d0ba7dc (diff) | |
tidying up directories
Diffstat (limited to 'pages/HomeForm.ui.qml')
| -rw-r--r-- | pages/HomeForm.ui.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/HomeForm.ui.qml b/pages/HomeForm.ui.qml new file mode 100644 index 0000000..2df9430 --- /dev/null +++ b/pages/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 + } +} |