diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-17 15:03:08 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-17 15:03:08 +0700 |
commit | 6e6f5bc8ecdc95600aa826ee12af5181fc09621c (patch) | |
tree | d1ccd6e8ed5b00c3665c34157e4eca9d8af29906 /HomeForm.ui.qml | |
parent | bbf6b29dcb2f7bc99f2af0587e5fc3e927a1129c (diff) |
`HomeForm` initial UI
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 + } +} |