diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 12:28:55 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-20 12:28:55 +0700 |
commit | 2bcf1b40ef11bbcfde6069ecf610d3ad6e63c0f7 (patch) | |
tree | 76feac8c4eee643003e66e2b74eb92bb699e0b83 /FutureForm.ui.qml | |
parent | bcb1e44f4a4f9b7927e5ab0e29b90654d0cd0379 (diff) |
add `FutureForm` for `drawer.ItemDelegate` sample
Diffstat (limited to 'FutureForm.ui.qml')
-rw-r--r-- | FutureForm.ui.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/FutureForm.ui.qml b/FutureForm.ui.qml new file mode 100644 index 0000000..6f6bc19 --- /dev/null +++ b/FutureForm.ui.qml @@ -0,0 +1,13 @@ +import QtQuick 2.12 +import QtQuick.Layouts 1.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 + +Page { + title: qsTr("Future task") + + Label { + text: qsTr("You are back to the future.") + anchors.centerIn: parent + } +} |