summaryrefslogtreecommitdiff
path: root/pages/TaskListForm.ui.qml
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-19 22:31:01 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2019-09-19 22:31:01 +0800
commit12255d2fc81bb43fd01a941cd015ef17adfa0f7f (patch)
treeefca3cb812e6a1affdacad2494ea8222b76e1397 /pages/TaskListForm.ui.qml
parentb7baeea2ab0f999a755226b79242f78a472d5a80 (diff)
Make HomeForm UI independent from implementation-dependent TaskList
Diffstat (limited to 'pages/TaskListForm.ui.qml')
-rw-r--r--pages/TaskListForm.ui.qml21
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
+ }
}