diff options
Diffstat (limited to 'HomeForm.ui.qml')
-rw-r--r-- | HomeForm.ui.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/HomeForm.ui.qml b/HomeForm.ui.qml new file mode 100644 index 0000000..2e717d9 --- /dev/null +++ b/HomeForm.ui.qml @@ -0,0 +1,11 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.5 + +Page { + title: qsTr("Today") + + Label { + text: qsTr("You are on the home page.") + anchors.centerIn: parent + } +} |