diff options
Diffstat (limited to 'pages/TaskListForm.ui.qml')
-rw-r--r-- | pages/TaskListForm.ui.qml | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/pages/TaskListForm.ui.qml b/pages/TaskListForm.ui.qml index 3dfd6cc..87f1b1c 100644 --- a/pages/TaskListForm.ui.qml +++ b/pages/TaskListForm.ui.qml @@ -1,15 +1,20 @@ import QtQuick 2.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 -import QtQuick.Layouts 1.12 ListView { - width: 362 - spacing: 12 + 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 - } + Rectangle { + id: rectangle + anchors.fill: parent + z: -1 + } } |