diff options
Diffstat (limited to 'forms/TaskListForm.ui.qml')
-rw-r--r-- | forms/TaskListForm.ui.qml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/forms/TaskListForm.ui.qml b/forms/TaskListForm.ui.qml new file mode 100644 index 0000000..87f1b1c --- /dev/null +++ b/forms/TaskListForm.ui.qml @@ -0,0 +1,20 @@ +import QtQuick 2.12 +import QtQuick.Controls 2.12 +import QtQuick.Controls.Material 2.12 + +ListView { + width: 362 + height: parent.height + anchors.topMargin: 8 + anchors.right: parent.right + anchors.rightMargin: 0 + anchors.left: parent.left + anchors.leftMargin: 0 + spacing: 12 + + Rectangle { + id: rectangle + anchors.fill: parent + z: -1 + } +} |